match/lib/match/generator.rb in fastlane-2.161.0 vs match/lib/match/generator.rb in fastlane-2.162.0
- old
+ new
@@ -24,15 +24,18 @@
development: params[:type] == "development",
type: specific_cert_type,
generate_apple_certs: params[:generate_apple_certs],
output_path: output_path,
force: true, # we don't need a certificate without its private key, we only care about a new certificate
+ api_key_path: params[:api_key_path],
+ api_key: params[:api_key],
username: params[:username],
team_id: params[:team_id],
team_name: params[:team_name],
keychain_path: FastlaneCore::Helper.keychain_path(params[:keychain_name]),
- keychain_password: params[:keychain_password]
+ keychain_password: params[:keychain_password],
+ skip_set_partition_list: params[:skip_set_partition_list]
})
Cert.config = arguments
begin
@@ -78,9 +81,11 @@
username: params[:username],
force: force,
cert_id: certificate_id,
provisioning_name: profile_name,
ignore_profiles_with_different_name: true,
+ api_key_path: params[:api_key_path],
+ api_key: params[:api_key],
team_id: params[:team_id],
team_name: params[:team_name],
template_name: params[:template_name],
fail_on_name_taken: params[:fail_on_name_taken]
}