Class: Fastlane::Actions::GetCertificatesAction
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, return_type, return_value, sample_return_value, shell_out_should_use_bundle_exec?, step_text
Class Method Details
.author ⇒ Object
52
53
54
|
# File 'fastlane/lib/fastlane/actions/get_certificates.rb', line 52
def self.author
"KrauseFx"
end
|
.available_options ⇒ Object
40
41
42
43
|
# File 'fastlane/lib/fastlane/actions/get_certificates.rb', line 40
def self.available_options
require 'cert'
Cert::Options.available_options
end
|
.category ⇒ Object
71
72
73
|
# File 'fastlane/lib/fastlane/actions/get_certificates.rb', line 71
def self.category
:code_signing
end
|
.description ⇒ Object
29
30
31
|
# File 'fastlane/lib/fastlane/actions/get_certificates.rb', line 29
def self.description
"Create new iOS code signing certificates (via _cert_)"
end
|
.details ⇒ Object
33
34
35
36
37
38
|
# File 'fastlane/lib/fastlane/actions/get_certificates.rb', line 33
def self.details
[
"**Important**: It is recommended to use [match](https://docs.fastlane.tools/actions/match/) according to the [codesigning.guide](https://codesigning.guide) for generating and maintaining your certificates. Use _cert_ directly only if you want full control over what's going on and know more about codesigning.",
"Use this action to download the latest code signing identity."
].join("\n")
end
|
.example_code ⇒ Object
60
61
62
63
64
65
66
67
68
69
|
# File 'fastlane/lib/fastlane/actions/get_certificates.rb', line 60
def self.example_code
[
'get_certificates',
'cert # alias for "get_certificates"',
'get_certificates(
development: true,
username: "[email protected]"
)'
]
end
|
.is_supported?(platform) ⇒ Boolean
56
57
58
|
# File 'fastlane/lib/fastlane/actions/get_certificates.rb', line 56
def self.is_supported?(platform)
platform == :ios
end
|
.output ⇒ Object
45
46
47
48
49
50
|
# File 'fastlane/lib/fastlane/actions/get_certificates.rb', line 45
def self.output
[
['CERT_FILE_PATH', 'The path to the certificate'],
['CERT_CERTIFICATE_ID', 'The id of the certificate']
]
end
|