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
24 25 26 |
# File 'lib/fastlane/plugin/rustored/actions/rustored_publish_aab_action.rb', line 24 def self. ["06ED"] end |
.available_options ⇒ Object
32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/fastlane/plugin/rustored/actions/rustored_publish_aab_action.rb', line 32 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
20 21 22 |
# File 'lib/fastlane/plugin/rustored/actions/rustored_publish_aab_action.rb', line 20 def self.description "Upload an AAB file to an existing RuStore draft version" end |
.details ⇒ Object
28 29 30 |
# File 'lib/fastlane/plugin/rustored/actions/rustored_publish_aab_action.rb', line 28 def self.details "Uploads an Android App Bundle to an existing RuStore draft version." end |
.is_supported?(platform) ⇒ Boolean
44 45 46 |
# File 'lib/fastlane/plugin/rustored/actions/rustored_publish_aab_action.rb', line 44 def self.is_supported?(platform) [:android].include?(platform) end |
.run(params) ⇒ Object
10 11 12 13 14 15 16 17 18 |
# File 'lib/fastlane/plugin/rustored/actions/rustored_publish_aab_action.rb', line 10 def self.run(params) Fastlane::Helper::RustoredHelper.publish_aab( key_id: params[:key_id], private_key: params[:private_key], package_name: params[:package_name], version_id: params[:version_id], aab_path: params[:aab_path] ) end |