Class: Fastlane::Actions::UploadToAppStoreAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Class Method Summary
collapse
action_name, authors, deprecated_notes, lane_context, method_missing, other_action, output, return_type, return_value, sample_return_value, shell_out_should_use_bundle_exec?, step_text
Class Method Details
.author ⇒ Object
41
42
43
|
# File 'fastlane/lib/fastlane/actions/upload_to_app_store.rb', line 41
def self.author
"KrauseFx"
end
|
.available_options ⇒ Object
.category ⇒ Object
60
61
62
|
# File 'fastlane/lib/fastlane/actions/upload_to_app_store.rb', line 60
def self.category
:production
end
|
.description ⇒ Object
20
21
22
|
# File 'fastlane/lib/fastlane/actions/upload_to_app_store.rb', line 20
def self.description
"Upload metadata and binary to App Store Connect (via _deliver_)"
end
|
.details ⇒ Object
24
25
26
27
28
29
30
31
32
33
|
# File 'fastlane/lib/fastlane/actions/upload_to_app_store.rb', line 24
def self.details
[
"Using _upload_to_app_store_ after _build_app_ and _capture_screenshots_ will automatically upload the latest ipa and screenshots with no other configuration.",
"",
"If you don't want a PDF report for App Store builds, use the `:force` option.",
"This is useful when running _fastlane_ on your Continuous Integration server:",
"`_upload_to_app_store_(force: true)`",
"If your account is on multiple teams and you need to tell the `iTMSTransporter` which 'provider' to use, you can set the `:itc_provider` option to pass this info."
].join("\n")
end
|
.example_code ⇒ Object
49
50
51
52
53
54
55
56
57
58
|
# File 'fastlane/lib/fastlane/actions/upload_to_app_store.rb', line 49
def self.example_code
[
'upload_to_app_store(
force: true, # Set to true to skip PDF verification
itc_provider: "abcde12345" # pass a specific value to the iTMSTransporter -itc_provider option
)',
'deliver # alias for "upload_to_app_store"',
'appstore # alias for "upload_to_app_store"'
]
end
|
.is_supported?(platform) ⇒ Boolean
45
46
47
|
# File 'fastlane/lib/fastlane/actions/upload_to_app_store.rb', line 45
def self.is_supported?(platform)
[:ios, :mac].include?(platform)
end
|