Skip to content

Commit f8eb144

Browse files
committed
debug traces
1 parent 563ad1b commit f8eb144

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/wheels.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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
uses: pypa/[email protected]

0 commit comments

Comments
 (0)