2021-04-07 16:39:26 +00:00
|
|
|
#!/bin/bash -ex
|
2021-06-12 01:19:33 +00:00
|
|
|
cd build/install
|
2022-06-13 21:05:28 +00:00
|
|
|
for i in Metaforce crashpad_handler; do
|
2022-06-13 23:20:09 +00:00
|
|
|
if [ -x "Metaforce.app/Contents/MacOS/$i" ]; then
|
|
|
|
codesign --timestamp --options runtime -s "$CODESIGN_IDENT" "Metaforce.app/Contents/MacOS/$i"
|
|
|
|
fi
|
2021-04-07 16:39:26 +00:00
|
|
|
done
|
2022-06-13 21:05:28 +00:00
|
|
|
create-dmg Metaforce.app --identity="$CODESIGN_IDENT" .
|
2021-06-12 16:48:20 +00:00
|
|
|
xcrun altool -t osx -f *.dmg --primary-bundle-id com.axiodl.Metaforce \
|
|
|
|
--notarize-app -u "$ASC_USERNAME" -p "$ASC_PASSWORD" --team-id "$ASC_TEAM_ID"
|