match/lib/match/options.rb in fastlane-2.82.0.beta.20180217010002 vs match/lib/match/options.rb in fastlane-2.82.0.beta.20180218010003
- old
+ new
@@ -35,16 +35,18 @@
description: "The bundle identifier(s) of your app (comma-separated)",
is_string: false,
type: Array, # we actually allow String and Array here
skip_type_validation: true,
code_gen_sensitive: true,
- default_value: CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier)),
+ default_value: CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier),
+ default_value_dynamic: true),
FastlaneCore::ConfigItem.new(key: :username,
short_option: "-u",
env_name: "MATCH_USERNAME",
description: "Your Apple ID Username",
- default_value: user),
+ default_value: user,
+ default_value_dynamic: true),
FastlaneCore::ConfigItem.new(key: :keychain_name,
short_option: "-s",
env_name: "MATCH_KEYCHAIN_NAME",
description: "Keychain the items should be imported to",
default_value: "login.keychain"),
@@ -64,10 +66,11 @@
env_name: "FASTLANE_TEAM_ID",
description: "The ID of your Developer Portal team if you're in multiple teams",
optional: true,
code_gen_sensitive: true,
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_id),
+ default_value_dynamic: true,
verify_block: proc do |value|
ENV["FASTLANE_TEAM_ID"] = value.to_s
end),
FastlaneCore::ConfigItem.new(key: :git_full_name,
env_name: "MATCH_GIT_FULL_NAME",
@@ -84,9 +87,10 @@
env_name: "FASTLANE_TEAM_NAME",
description: "The name of your Developer Portal team if you're in multiple teams",
optional: true,
code_gen_sensitive: true,
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_name),
+ default_value_dynamic: true,
verify_block: proc do |value|
ENV["FASTLANE_TEAM_NAME"] = value.to_s
end),
FastlaneCore::ConfigItem.new(key: :verbose,
env_name: "MATCH_VERBOSE",