match/lib/match/options.rb in fastlane_hotfix-2.165.1 vs match/lib/match/options.rb in fastlane_hotfix-2.187.0
- old
+ new
@@ -72,19 +72,19 @@
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier),
default_value_dynamic: true),
# App Store Connect API
FastlaneCore::ConfigItem.new(key: :api_key_path,
- env_name: "SIGH_API_KEY_PATH",
+ env_names: ["SIGH_API_KEY_PATH", "APP_STORE_CONNECT_API_KEY_PATH"],
description: "Path to your App Store Connect API Key JSON file (https://docs.fastlane.tools/app-store-connect-api/#using-fastlane-api-key-json-file)",
optional: true,
conflicting_options: [:api_key],
verify_block: proc do |value|
UI.user_error!("Couldn't find API key JSON file at path '#{value}'") unless File.exist?(value)
end),
FastlaneCore::ConfigItem.new(key: :api_key,
- env_name: "SIGH_API_KEY",
+ env_names: ["SIGH_API_KEY", "APP_STORE_CONNECT_API_KEY"],
description: "Your App Store Connect API Key information (https://docs.fastlane.tools/app-store-connect-api/#use-return-value-and-pass-in-as-an-option)",
type: Hash,
optional: true,
sensitive: true,
conflicting_options: [:api_key_path]),
@@ -205,10 +205,11 @@
description: "S3 access key",
optional: true),
FastlaneCore::ConfigItem.new(key: :s3_secret_access_key,
env_name: "MATCH_S3_SECRET_ACCESS_KEY",
description: "S3 secret access key",
+ sensitive: true,
optional: true),
FastlaneCore::ConfigItem.new(key: :s3_bucket,
env_name: "MATCH_S3_BUCKET",
description: "Name of the S3 bucket",
optional: true),
@@ -225,10 +226,10 @@
default_value: "login.keychain"),
FastlaneCore::ConfigItem.new(key: :keychain_password,
short_option: "-p",
env_name: "MATCH_KEYCHAIN_PASSWORD",
sensitive: true,
- description: "This might be required the first time you access certificates on a new mac. For the login/default keychain this is your account password",
+ description: "This might be required the first time you access certificates on a new mac. For the login/default keychain this is your macOS account password",
optional: true),
# settings
FastlaneCore::ConfigItem.new(key: :force,
env_name: "MATCH_FORCE",