From f323f4c303f0522163593bdf717790accba480a3 Mon Sep 17 00:00:00 2001 From: Nathan Ellis Date: Thu, 18 Jul 2024 19:08:00 +0100 Subject: [PATCH] added debug --- .github/workflows/build_sign_release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_sign_release.yml b/.github/workflows/build_sign_release.yml index b134212..b8aaa2f 100644 --- a/.github/workflows/build_sign_release.yml +++ b/.github/workflows/build_sign_release.yml @@ -59,7 +59,10 @@ jobs: run: | xcrun notarytool store-credentials "notarytool-profile" --apple-id "$PROD_MACOS_NOTARIZATION_APPLE_ID" --team-id "$PROD_MACOS_NOTARIZATION_TEAM_ID" --password "$PROD_MACOS_NOTARIZATION_PWD" ditto -c -k --keepParent "$PWD/build/MenuBar Weather.app" "notarization.zip" - xcrun notarytool submit "notarization.zip" --keychain-profile "notarytool-profile" --wait + SUBMISSION_ID=$(xcrun notarytool submit "notarization.zip" --keychain-profile "notarytool-profile" --wait | grep 'id: ' | awk '{print $2}') + echo "Submission ID: $SUBMISSION_ID" + xcrun notarytool log "$SUBMISSION_ID" --keychain-profile "notarytool-profile" + # xcrun notarytool submit "notarization.zip" --keychain-profile "notarytool-profile" --wait xcrun stapler staple "$PWD/build/MenuBar Weather.app"