Skip to content

Commit

Permalink
macos: fix deployment due to... notarytool changing syntax ???
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Dec 11, 2024
1 parent f636291 commit 6ce8873
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions ci/osx-package.deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ do
((i++))
done

ls

find . -name '*.dmg'

sudo chown "$(whoami)" ./*.dmg

# Notarize the .dmg
Expand All @@ -80,12 +84,13 @@ if [[ "${CI_IS_AZURE}" = "1" ]]; then
security unlock-keychain -p travis build.keychain
fi

xcrun notarytool submit *.dmg \
xcrun notarytool \
--team-id "GRW9MHZ724" \
--apple-id "[email protected]" \
--password "$MAC_ALTOOL_PASSWORD" \
--progress \
--wait
--wait \
submit *.dmg

# Staple
xcrun stapler staple ./*.dmg
Expand Down

0 comments on commit 6ce8873

Please sign in to comment.