16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# File 'fastlane/lib/fastlane/actions/import_certificate.rb', line 16
def self.available_options
[
FastlaneCore::ConfigItem.new(key: :certificate_path,
description: "Path to certificate",
optional: false),
FastlaneCore::ConfigItem.new(key: :certificate_password,
description: "Certificate password",
sensitive: true,
default_value: "",
optional: true),
FastlaneCore::ConfigItem.new(key: :keychain_name,
env_name: "KEYCHAIN_NAME",
description: "Keychain the items should be imported to",
optional: false),
FastlaneCore::ConfigItem.new(key: :keychain_path,
env_name: "KEYCHAIN_PATH",
description: "Path to the Keychain file to which the items should be imported",
optional: true),
FastlaneCore::ConfigItem.new(key: :keychain_password,
env_name: "FL_IMPORT_CERT_KEYCHAIN_PASSWORD",
description: "The password for the keychain. Note that for the login keychain this is your user's password",
sensitive: true,
optional: true),
FastlaneCore::ConfigItem.new(key: :log_output,
description: "If output should be logged to the console",
type: Boolean,
default_value: false,
optional: true)
]
end
|