Skip to content

Commit 493752b

Browse files
committed
fixup! Add signing keychain to workflow
1 parent f68cce4 commit 493752b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ jobs:
4040
shell: bash
4141
run: |
4242
# store certificate on filesystem
43-
CERTIFICATE="$(mktemp -d)/wmch-devid.p12"
43+
export CERTIFICATE="$(mktemp -d)/wmch-devid.p12"
4444
echo "${{ secrets.APPLE_SIGNING_CERTIFICATE }}" | base64 --decode -o $CERTIFICATE
4545
4646
# create a dedicated keychain
47-
APPLE_SIGNING_KEYCHAIN_PATH="$(mktemp -d)/build.keychain"
47+
export APPLE_SIGNING_KEYCHAIN_PATH="$(mktemp -d)/build.keychain"
4848
echo "APPLE_SIGNING_KEYCHAIN_PATH=${APPLE_SIGNING_KEYCHAIN_PATH}" >> "$GITHUB_ENV"
4949
security create-keychain -p mysecretpassword ${APPLE_SIGNING_KEYCHAIN_PATH}
5050
security default-keychain -s ${APPLE_SIGNING_KEYCHAIN_PATH}

0 commit comments

Comments
 (0)