match/lib/match/options.rb in fastlane-2.153.1 vs match/lib/match/options.rb in fastlane-2.154.0
- old
+ new
@@ -139,17 +139,24 @@
default_value: false),
FastlaneCore::ConfigItem.new(key: :git_basic_authorization,
env_name: "MATCH_GIT_BASIC_AUTHORIZATION",
sensitive: true,
description: "Use a basic authorization header to access the git repo (e.g.: access via HTTPS, GitHub Actions, etc), usually a string in Base64",
- conflicting_options: [:git_bearer_authorization],
+ conflicting_options: [:git_bearer_authorization, :git_private_key],
optional: true,
default_value: nil),
FastlaneCore::ConfigItem.new(key: :git_bearer_authorization,
env_name: "MATCH_GIT_BEARER_AUTHORIZATION",
sensitive: true,
description: "Use a bearer authorization header to access the git repo (e.g.: access to an Azure Devops repository), usually a string in Base64",
- conflicting_options: [:git_basic_authorization],
+ conflicting_options: [:git_basic_authorization, :git_private_key],
+ optional: true,
+ default_value: nil),
+ FastlaneCore::ConfigItem.new(key: :git_private_key,
+ env_name: "MATCH_GIT_PRIVATE_KEY",
+ sensitive: true,
+ description: "Use a private key to access the git repo (e.g.: access to GitHub repository via Deploy keys), usually a id_rsa named file or the contents hereof",
+ conflicting_options: [:git_basic_authorization, :git_bearer_authorization],
optional: true,
default_value: nil),
# Storage: Google Cloud
FastlaneCore::ConfigItem.new(key: :google_cloud_bucket_name,