From e6565c81186966a1c1bd7242e410419e02eb2774 Mon Sep 17 00:00:00 2001 From: Koen Schmeets Date: Tue, 12 Sep 2023 21:14:42 +0200 Subject: [PATCH] Debug issue with notarization --- .github/scripts/sign-macos.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/sign-macos.sh b/.github/scripts/sign-macos.sh index 0580f74..69ff544 100755 --- a/.github/scripts/sign-macos.sh +++ b/.github/scripts/sign-macos.sh @@ -59,7 +59,7 @@ hdiutil create -srcfolder "${app}" "${dmg}" codesign -s "${MACOS_DEVELOPER_ID}" --timestamp --options runtime -f --deep "${dmg}" # notarize and store request uuid in variable -notarize_uuid=$(xcrun altool --notarize-app --primary-bundle-id "${bundle_id}" --username "${MACOS_APPSTORE_USERNAME}" --password "${MACOS_APPSTORE_APP_PASSWORD}" --file "${dmg}" 2>&1 | grep RequestUUID | awk '{print $3'}) +notarize_uuid=$(xcrun altool --notarize-app --primary-bundle-id "${bundle_id}" --username "${MACOS_APPSTORE_USERNAME}" --password "${MACOS_APPSTORE_APP_PASSWORD}" --file "${dmg}" | grep RequestUUID | awk '{print $3'}) echo $notarize_uuid