From af2c237f2a317a3f98e8e624e56a98e62cd77b92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Magnus=20K=C3=BChne?= Date: Tue, 12 Nov 2024 14:33:34 +0100 Subject: [PATCH] Disable automatic signing --- fastlane/Fastfile | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 06888dc1..3014a8df 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -79,6 +79,10 @@ platform :ios do # Configure Code Signing via Match ########################################## + disable_automatic_code_signing( + team_id: team_id + ) + match( type: "appstore", api_key: api_key, @@ -87,6 +91,8 @@ platform :ios do clone_branch_directly: true, # optional git_user_email: "ls1.itg@in.tum.de", git_url: "https://gitlab.lrz.de/ase/ipraktikum/match-code-signing", + readonly: false, + force: true, git_basic_authorization: ENV['IOS_MATCH_GITLAB_AUTH'], # Base-64 encoded, format gitlab_auth_token_name:gitlab_auth_token keychain_name: keychain_name, keychain_password: keychain_password, # Keychain password to store cert (using the default login keychain) @@ -102,14 +108,6 @@ platform :ios do plist_path: info_plist_path ) - # Update Xcode Project to use maunual code signing - update_code_signing_settings( - use_automatic_signing: false, - code_sign_identity: "iPhone Distribution", - profile_uuid: lane_context[SharedValues::SIGH_UUID], - profile_name: lane_context[SharedValues::SIGH_NAME] - ) - ########################################## # Code sign and Build ##########################################