Skip to content

Commit

Permalink
use new default keychain
Browse files Browse the repository at this point in the history
  • Loading branch information
magkue committed Nov 19, 2024
1 parent 4aa8237 commit 1dae0f9
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ platform :ios do
)

unlock_keychain(
path: "~/Library/Keychains/ios-db",

path: "~/Library/Keychains/login.keychain",
password: ENV['IOS_KEYCHAIN_PASSWORD']
)

Expand All @@ -82,7 +81,7 @@ platform :ios do
git_user_email: "[email protected]",
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
Expand All @@ -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
Expand Down

0 comments on commit 1dae0f9

Please sign in to comment.