We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f68cce4 commit 493752bCopy full SHA for 493752b
.github/workflows/wheels.yml
@@ -40,11 +40,11 @@ jobs:
40
shell: bash
41
run: |
42
# store certificate on filesystem
43
- CERTIFICATE="$(mktemp -d)/wmch-devid.p12"
+ export CERTIFICATE="$(mktemp -d)/wmch-devid.p12"
44
echo "${{ secrets.APPLE_SIGNING_CERTIFICATE }}" | base64 --decode -o $CERTIFICATE
45
46
# create a dedicated keychain
47
- APPLE_SIGNING_KEYCHAIN_PATH="$(mktemp -d)/build.keychain"
+ export APPLE_SIGNING_KEYCHAIN_PATH="$(mktemp -d)/build.keychain"
48
echo "APPLE_SIGNING_KEYCHAIN_PATH=${APPLE_SIGNING_KEYCHAIN_PATH}" >> "$GITHUB_ENV"
49
security create-keychain -p mysecretpassword ${APPLE_SIGNING_KEYCHAIN_PATH}
50
security default-keychain -s ${APPLE_SIGNING_KEYCHAIN_PATH}
0 commit comments