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
47
48
49
|
# File 'fastlane/lib/fastlane/actions/upload_to_app_store.rb', line 47
def self.author
"KrauseFx"
end
|
.available_options ⇒ Object
.category ⇒ Object
66
67
68
|
# File 'fastlane/lib/fastlane/actions/upload_to_app_store.rb', line 66
def self.category
:production
end
|
.description ⇒ Object
26
27
28
|
# File 'fastlane/lib/fastlane/actions/upload_to_app_store.rb', line 26
def self.description
"Upload metadata and binary to App Store Connect (via _deliver_)"
end
|
.details ⇒ Object
30
31
32
33
34
35
36
37
38
39
|
# File 'fastlane/lib/fastlane/actions/upload_to_app_store.rb', line 30
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 to verify an HTML preview 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
55
56
57
58
59
60
61
62
63
64
|
# File 'fastlane/lib/fastlane/actions/upload_to_app_store.rb', line 55
def self.example_code
[
'upload_to_app_store(
force: true, # Set to true to skip verification of HTML preview
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
51
52
53
|
# File 'fastlane/lib/fastlane/actions/upload_to_app_store.rb', line 51
def self.is_supported?(platform)
[:ios, :mac].include?(platform)
end
|