fix(macos): delete keychain to avoid conflict on next release (#1071)

This commit is contained in:
Baptiste Augrain 2022-05-07 14:02:20 +02:00 committed by GitHub
parent 4855694fd6
commit 014d9a339d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -87,6 +87,7 @@ jobs:
security import $CERTIFICATE_P12 -k $KEYCHAIN -P $CERTIFICATE_OSX_PASSWORD -T /usr/bin/codesign
security set-key-partition-list -S apple-tool:,apple: -s -k mysecretpassword $KEYCHAIN
codesign --deep --force --verbose --sign "$CERTIFICATE_OSX_ID" VSCodium.app
security delete-keychain $KEYCHAIN
fi
- name: Prepare artifacts
@ -105,4 +106,3 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
GITHUB_USERNAME: ${{ github.repository_owner }}