metaforce/ci/build-dmg.sh

9 lines
380 B
Bash
Raw Normal View History

#!/bin/bash -ex
2021-06-11 18:19:33 -07:00
cd build/install
2022-02-21 19:12:03 -08:00
for i in metaforce crashpad_handler; do
2022-06-13 00:55:12 -07:00
codesign --timestamp --options runtime -s "$CODESIGN_IDENT" metaforce.app/Contents/MacOS/$i
done
2022-06-13 00:55:12 -07:00
create-dmg metaforce.app --identity="$CODESIGN_IDENT" .
2021-06-12 09:48:20 -07: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"