mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-12-26 08:51:22 -06:00
Migrate from altool to notarytool for app notarization (#2027)
This commit is contained in:
parent
f3380b06aa
commit
c6bc3727f2
@ -124,7 +124,9 @@ productsign --sign "Developer ID Installer: Symphony Communication Services LLC"
|
||||
echo "Signing Package complete: ${PACKAGE}"
|
||||
|
||||
# Notarize the app
|
||||
xcrun altool --notarize-app --primary-bundle-id "$BUNDLE_ID" --username "$APPLE_ID" --password "$APPLE_ID_PASSWORD" --file $SIGNED_PACKAGE > /tmp/notarize.txt
|
||||
# xcrun altool --notarize-app --primary-bundle-id "$pwd" --username "$APPLE_ID" --password "$APPLE_ID_PASSWORD" --file $SIGNED_PACKAGE > /tmp/notarize.txt
|
||||
xcrun notarytool submit --apple-id "$APPLE_ID" --password "$APPLE_ID_PASSWORD" --team-id "$TEAM_ID" $SIGNED_PACKAGE --wait > /tmp/notarize.txt
|
||||
|
||||
cat /tmp/notarize.txt
|
||||
REQUEST_ID=$(sed -n '2p' /tmp/notarize.txt)
|
||||
REQUEST_ID=$(echo $REQUEST_ID | cut -d "=" -f 2)
|
||||
|
Loading…
Reference in New Issue
Block a user