match/lib/match/options.rb in fastlane-2.142.0 vs match/lib/match/options.rb in fastlane-2.143.0
- old
+ new
@@ -157,9 +157,27 @@
FastlaneCore::ConfigItem.new(key: :google_cloud_project_id,
env_name: "MATCH_GOOGLE_CLOUD_PROJECT_ID",
description: "ID of the Google Cloud project to use for authentication",
optional: true),
+ # Storage: S3
+ FastlaneCore::ConfigItem.new(key: :s3_region,
+ env_name: "MATCH_S3_REGION",
+ description: "Name of the S3 region",
+ optional: true),
+ FastlaneCore::ConfigItem.new(key: :s3_access_key,
+ env_name: "MATCH_S3_ACCESS_KEY",
+ description: "S3 access key",
+ optional: true),
+ FastlaneCore::ConfigItem.new(key: :s3_secret_access_key,
+ env_name: "MATCH_S3_SECRET_ACCESS_KEY",
+ description: "S3 secret secret access key",
+ optional: true),
+ FastlaneCore::ConfigItem.new(key: :s3_bucket,
+ env_name: "MATCH_S3_BUCKET",
+ description: "Name of the S3 bucket",
+ optional: true),
+
# Keychain
FastlaneCore::ConfigItem.new(key: :keychain_name,
short_option: "-s",
env_name: "MATCH_KEYCHAIN_NAME",
description: "Keychain the items should be imported to",