Skip to content

Commit

Permalink
Try fix apple cert keychain error
Browse files Browse the repository at this point in the history
Signed-off-by: Javier Guzman <[email protected]>
  • Loading branch information
javierguzman committed Jun 23, 2023
1 parent f0e0274 commit dd154eb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,10 @@ jobs:
security unlock-keychain -p "$APPLE_KEYCHAIN_PASSWORD" $KEYCHAIN_PATH
#import certificates
security import $APPLE_INSTALLER_CERT_PATH -P "$APPLE_CERT_PASSWORD" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH
security import $APPLE_APPLICATION_CERT_PATH -P "$APPLE_CERT_PASSWORD" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH
echo "Importing installer cert"
security import "$APPLE_INSTALLER_CERT_PATH" -P "$APPLE_CERT_PASSWORD" -A -t cert -f pkcs12 -k "$KEYCHAIN_PATH"
echo "Importing application cert"
security import "$APPLE_APPLICATION_CERT_PATH" -P "$APPLE_CERT_PASSWORD" -A -t cert -f pkcs12 -k "$KEYCHAIN_PATH"
security list-keychain -d user -s $KEYCHAIN_PATH
# - run: yarn run lint
Expand Down

0 comments on commit dd154eb

Please sign in to comment.