2021-01-06 16:10:30 +00:00
|
|
|
#!/bin/sh
|
|
|
|
ci/store-deploy.sh mac || { echo "Failed to deploy macOS" ; exit 1 ; }
|
2021-01-26 16:02:36 +00:00
|
|
|
ci/beta-deploy.sh ios || { echo "Failed to deploy iOS" ; exit 1 ; }
|
2021-01-30 09:19:05 +00:00
|
|
|
|
|
|
|
VERSION=`agvtool mvers -terse1`
|
|
|
|
BUILD=`agvtool vers -terse`
|
|
|
|
git tag "v$VERSION-b$BUILD"
|