From 1dae0f96ef250b613712c4e4fe6909dd89cd3115 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Magnus=20K=C3=BChne?= Date: Tue, 19 Nov 2024 10:38:22 +0100 Subject: [PATCH] use new default keychain --- fastlane/Fastfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index e0a1f459..0c127f06 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -63,8 +63,7 @@ platform :ios do ) unlock_keychain( - path: "~/Library/Keychains/ios-db", - + path: "~/Library/Keychains/login.keychain", password: ENV['IOS_KEYCHAIN_PASSWORD'] ) @@ -82,7 +81,7 @@ platform :ios do git_user_email: "ls1.itg@in.tum.de", git_url: "https://gitlab.lrz.de/ase/ipraktikum/match-code-signing", readonly: false, - keychain_name: "ios", + keychain_name: "login", keychain_password: ENV['IOS_KEYCHAIN_PASSWORD'], git_basic_authorization: ENV['IOS_MATCH_GITLAB_AUTH'], # Base-64 encoded, format gitlab_auth_token_name:gitlab_auth_token verbose: true # optional but very helpful @@ -92,11 +91,9 @@ platform :ios do # Build ########################################## - profile_mapping = Actions.lane_context[SharedValues::MATCH_PROVISIONING_PROFILE_MAPPING] update_code_signing_settings( use_automatic_signing: false, code_sign_identity: 'iPhone Distribution', - profile_name: profile_mapping[app_identifier], ) # Build the app