Class: Fastlane::Actions::RustoredPublishAabAction
- Inherits:
-
Action
- Object
- Action
- Fastlane::Actions::RustoredPublishAabAction
- Defined in:
- lib/fastlane/plugin/rustored/actions/rustored_publish_aab_action.rb
Class Method Summary collapse
- .authors ⇒ Object
- .available_options ⇒ Object
- .description ⇒ Object
- .details ⇒ Object
- .is_supported?(platform) ⇒ Boolean
- .run(params) ⇒ Object
Class Method Details
.authors ⇒ Object
23 24 25 |
# File 'lib/fastlane/plugin/rustored/actions/rustored_publish_aab_action.rb', line 23 def self. ["06ED"] end |
.available_options ⇒ Object
31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/fastlane/plugin/rustored/actions/rustored_publish_aab_action.rb', line 31 def self. Fastlane::Helper::RustoredOptions. + [ FastlaneCore::ConfigItem.new( key: :aab_path, env_name: "RUSTORE_AAB_PATH", description: "Path to the AAB file you want to publish", optional: false, type: String ) ] end |
.description ⇒ Object
19 20 21 |
# File 'lib/fastlane/plugin/rustored/actions/rustored_publish_aab_action.rb', line 19 def self.description "Publish an AAB file to RuStore" end |
.details ⇒ Object
27 28 29 |
# File 'lib/fastlane/plugin/rustored/actions/rustored_publish_aab_action.rb', line 27 def self.details "Uploads an Android App Bundle to an existing RuStore app version." end |
.is_supported?(platform) ⇒ Boolean
43 44 45 |
# File 'lib/fastlane/plugin/rustored/actions/rustored_publish_aab_action.rb', line 43 def self.is_supported?(platform) [:android].include?(platform) end |
.run(params) ⇒ Object
10 11 12 13 14 15 16 17 |
# File 'lib/fastlane/plugin/rustored/actions/rustored_publish_aab_action.rb', line 10 def self.run(params) Fastlane::Helper::RustoredHelper.publish_aab( token: params[:token], package_name: params[:package_name], version_id: params[:version_id], aab_path: params[:aab_path] ) end |