From 6eb04c6e41f37e5dfa0da07f6e18af6988b7cd18 Mon Sep 17 00:00:00 2001 From: Andrei Pohilko Date: Thu, 4 Apr 2024 11:39:37 +0100 Subject: [PATCH] Zip before notarizing --- scripts/notarize-macos-app.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/notarize-macos-app.sh b/scripts/notarize-macos-app.sh index 8137548..08a56cd 100755 --- a/scripts/notarize-macos-app.sh +++ b/scripts/notarize-macos-app.sh @@ -1,6 +1,7 @@ #!/usr/bin/env sh echo "Notarizing $1" -xcrun notarytool submit $1 \ +zip $1.zip $1 +xcrun notarytool submit $1.zip \ --apple-id "$MACOS_NOTARY_APPLE_ID" \ --team-id "$MACOS_NOTARY_TEAM_ID" \ --password "$MACOS_NOTARY_PASSWORD" \