match/lib/match/options.rb in fastlane-2.137.0 vs match/lib/match/options.rb in fastlane-2.138.0
- old
+ new
@@ -123,9 +123,17 @@
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],
+ 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],
optional: true,
default_value: nil),
# Storage: Google Cloud
FastlaneCore::ConfigItem.new(key: :google_cloud_bucket_name,