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
57
58
59
|
# File 'fastlane/lib/fastlane/actions/get_certificates.rb', line 57
def self.author
"KrauseFx"
end
|
.available_options ⇒ Object
45
46
47
48
|
# File 'fastlane/lib/fastlane/actions/get_certificates.rb', line 45
def self.available_options
require 'cert'
Cert::Options.available_options
end
|
.category ⇒ Object
76
77
78
|
# File 'fastlane/lib/fastlane/actions/get_certificates.rb', line 76
def self.category
:code_signing
end
|
.description ⇒ Object
34
35
36
|
# File 'fastlane/lib/fastlane/actions/get_certificates.rb', line 34
def self.description
"Create new iOS code signing certificates (via _cert_)"
end
|
.details ⇒ Object
38
39
40
41
42
43
|
# File 'fastlane/lib/fastlane/actions/get_certificates.rb', line 38
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
65
66
67
68
69
70
71
72
73
74
|
# File 'fastlane/lib/fastlane/actions/get_certificates.rb', line 65
def self.example_code
[
'get_certificates',
'cert # alias for "get_certificates"',
'get_certificates(
development: true,
username: "[email protected]"
)'
]
end
|
.is_supported?(platform) ⇒ Boolean
61
62
63
|
# File 'fastlane/lib/fastlane/actions/get_certificates.rb', line 61
def self.is_supported?(platform)
platform == :ios
end
|
.output ⇒ Object
50
51
52
53
54
55
|
# File 'fastlane/lib/fastlane/actions/get_certificates.rb', line 50
def self.output
[
['CERT_FILE_PATH', 'The path to the certificate'],
['CERT_CERTIFICATE_ID', 'The id of the certificate']
]
end
|