File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -42,28 +42,36 @@ jobs:
4242 # store certificate on filesystem
4343 export CERTIFICATE="$(mktemp -d)/wmch-devid.p12"
4444 echo "${{ secrets.APPLE_SIGNING_CERTIFICATE }}" | base64 --decode -o $CERTIFICATE
45+ echo "extracted"
4546
4647 # create a dedicated keychain
4748 export APPLE_SIGNING_KEYCHAIN_PATH="$(mktemp -d)/build.keychain"
4849 echo "APPLE_SIGNING_KEYCHAIN_PATH=${APPLE_SIGNING_KEYCHAIN_PATH}" >> "$GITHUB_ENV"
4950 security create-keychain -p mysecretpassword ${APPLE_SIGNING_KEYCHAIN_PATH}
51+ echo "created"
5052 security default-keychain -s ${APPLE_SIGNING_KEYCHAIN_PATH}
53+ echo "set dfault"
5154 security unlock-keychain -p mysecretpassword ${APPLE_SIGNING_KEYCHAIN_PATH}
55+ echo "unlocked"
5256
5357 # import certificate into keychain then remove from filesystem
5458 security import $CERTIFICATE -k ${APPLE_SIGNING_KEYCHAIN_PATH} -P "${{ secrets.APPLE_SIGNING_P12_PASSWORD }}" -A
59+ echo "imported"
5560 rm $CERTIFICATE
5661
5762 # store signing credentials into the keychain
5863 security set-key-partition-list -S "apple-tool:,apple:" -s -k mysecretpassword ${APPLE_SIGNING_KEYCHAIN_PATH}
64+ echo "partitioned"
5965 security find-identity -v
66+ echo "found"
6067 xcrun notarytool store-credentials \
6168 --apple-id "${{ secrets.APPLE_SIGNING_ALTOOL_USERNAME }}" \
6269 --password "${{ secrets.APPLE_SIGNING_ALTOOL_PASSWORD }}" \
6370 --team-id "${{ secrets.APPLE_SIGNING_TEAM }}" \
6471 --validate \
6572 --keychain ${APPLE_SIGNING_KEYCHAIN_PATH} \
6673 ${APPLE_SIGNING_KEYCHAIN_PROFILE}
74+ echo "stored"
6775
6876 - name : Build wheels
6977
You can’t perform that action at this time.
0 commit comments