Class: Fastlane::Actions::UploadToTestflightAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Class Method Summary
collapse
action_name, author, 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
.authors ⇒ Object
58
59
60
|
# File 'fastlane/lib/fastlane/actions/upload_to_testflight.rb', line 58
def self.authors
["KrauseFx"]
end
|
.available_options ⇒ Object
.category ⇒ Object
54
55
56
|
# File 'fastlane/lib/fastlane/actions/upload_to_testflight.rb', line 54
def self.category
:beta
end
|
.description ⇒ Object
23
24
25
|
# File 'fastlane/lib/fastlane/actions/upload_to_testflight.rb', line 23
def self.description
"Upload new binary to App Store Connect for TestFlight beta testing (via _pilot_)"
end
|
.details ⇒ Object
27
28
29
30
31
32
|
# File 'fastlane/lib/fastlane/actions/upload_to_testflight.rb', line 27
def self.details
[
"More details can be found on https://docs.fastlane.tools/actions/pilot/.",
"This integration will only do the TestFlight upload."
].join("\n")
end
|
.example_code ⇒ Object
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# File 'fastlane/lib/fastlane/actions/upload_to_testflight.rb', line 40
def self.example_code
[
'upload_to_testflight',
'testflight # alias for "upload_to_testflight"',
'pilot # alias for "upload_to_testflight"',
'upload_to_testflight(skip_submission: true) # to only upload the build',
'upload_to_testflight(
username: "[email protected]",
app_identifier: "com.krausefx.app",
itc_provider: "abcde12345" # pass a specific value to the iTMSTransporter -itc_provider option
)'
]
end
|
.is_supported?(platform) ⇒ Boolean
62
63
64
|
# File 'fastlane/lib/fastlane/actions/upload_to_testflight.rb', line 62
def self.is_supported?(platform)
[:ios].include?(platform)
end
|