mirror of https://github.com/AxioDL/metaforce.git
11 lines
441 B
Bash
Executable File
11 lines
441 B
Bash
Executable File
#!/bin/bash -ex
|
|
cd build/install
|
|
for i in Metaforce crashpad_handler; do
|
|
if [ -x "Metaforce.app/Contents/MacOS/$i" ]; then
|
|
codesign --timestamp --options runtime -s "$CODESIGN_IDENT" "Metaforce.app/Contents/MacOS/$i"
|
|
fi
|
|
done
|
|
create-dmg Metaforce.app --identity="$CODESIGN_IDENT" .
|
|
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"
|