11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# File 'lib/fastlane/plugin/sq_ci_tools/options/keychain.rb', line 11
def self.options
[
FastlaneCore::ConfigItem.new(
key: :keychain_name,
env_name: 'SQ_CI_KEYCHAIN_NAME',
description: 'Keychain name for storing certificates',
optional: false,
type: String
),
FastlaneCore::ConfigItem.new(
key: :keychain_password,
env_name: 'SQ_CI_KEYCHAIN_PASSWORD',
description: 'Password for keychain for storing certificates',
optional: false,
type: String
)
]
end
|