Split build/submit by target
This commit is contained in:
parent
3bf39b9a88
commit
6ed36125de
|
@ -0,0 +1,7 @@
|
|||
#!/bin/sh
|
||||
rm -rf build dist
|
||||
scripts/commit-beta.sh
|
||||
ci/dev-archive.sh mac || { echo "Failed to build macOS" ; exit 1 ; }
|
||||
scripts/reset-archive.sh
|
||||
ci/dev-archive.sh ios || { echo "Failed to build iOS" ; exit 1 ; }
|
||||
#scripts/reset-archive.sh
|
|
@ -1,6 +1,7 @@
|
|||
#!/bin/sh
|
||||
ci/dev-deploy.sh mac || { echo "Failed to deploy macOS" ; exit 1 ; }
|
||||
ci/dev-deploy.sh ios || { echo "Failed to deploy iOS" ; exit 1 ; }
|
||||
scripts/reset-archive.sh
|
||||
|
||||
VERSION=`agvtool mvers -terse1`
|
||||
BUILD=`agvtool vers -terse`
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/bin/sh
|
||||
ci/store-deploy.sh mac || { echo "Failed to deploy macOS" ; exit 1 ; }
|
||||
ci/beta-deploy.sh ios || { echo "Failed to deploy iOS" ; exit 1 ; }
|
||||
scripts/reset-archive.sh
|
||||
|
||||
VERSION=`agvtool mvers -terse1`
|
||||
BUILD=`agvtool vers -terse`
|
||||
|
|
Loading…
Reference in New Issue