File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -43,36 +43,28 @@ jobs:
4343 # store certificate on filesystem
4444 export CERTIFICATE="$(mktemp -d)/wmch-devid.p12"
4545 echo "${{ secrets.APPLE_SIGNING_CERTIFICATE }}" | base64 --decode -o $CERTIFICATE
46- echo "extracted"
4746
4847 # create a dedicated keychain
4948 export APPLE_SIGNING_KEYCHAIN_PATH="$(mktemp -d)/build.keychain"
5049 echo "APPLE_SIGNING_KEYCHAIN_PATH=${APPLE_SIGNING_KEYCHAIN_PATH}" >> "$GITHUB_ENV"
5150 security create-keychain -p mysecretpassword ${APPLE_SIGNING_KEYCHAIN_PATH}
52- echo "created"
5351 security default-keychain -s ${APPLE_SIGNING_KEYCHAIN_PATH}
54- echo "set dfault"
5552 security unlock-keychain -p mysecretpassword ${APPLE_SIGNING_KEYCHAIN_PATH}
56- echo "unlocked"
5753
5854 # import certificate into keychain then remove from filesystem
5955 security import ${CERTIFICATE} -k ${APPLE_SIGNING_KEYCHAIN_PATH} -P "${{ secrets.APPLE_SIGNING_P12_PASSWORD }}" -A
60- echo "imported"
6156 rm $CERTIFICATE
6257
6358 # store signing credentials into the keychain
6459 security set-key-partition-list -S "apple-tool:,apple:" -s -k mysecretpassword ${APPLE_SIGNING_KEYCHAIN_PATH}
65- echo "partitioned"
6660 security find-identity -v
67- echo "found"
6861 xcrun notarytool store-credentials \
6962 --apple-id "${{ secrets.APPLE_SIGNING_ALTOOL_USERNAME }}" \
7063 --password "${{ secrets.APPLE_SIGNING_ALTOOL_PASSWORD }}" \
7164 --team-id "${{ secrets.APPLE_SIGNING_TEAM }}" \
7265 --validate \
7366 --keychain ${APPLE_SIGNING_KEYCHAIN_PATH} \
7467 ${APPLE_SIGNING_KEYCHAIN_PROFILE}
75- echo "stored"
7668
7769 - name : Build wheels
7870
You can’t perform that action at this time.
0 commit comments