Split submission to AppCenter and App Store
Tag at the end.
This commit is contained in:
parent
48d3c360ae
commit
5a7211132e
|
@ -1 +1 @@
|
||||||
Subproject commit 0c3145c150fa278e9c718763e33864757f8948b6
|
Subproject commit 2abf37faeea34aa5647be1bd21abd0e0663ac0ee
|
|
@ -0,0 +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 ; }
|
||||||
|
|
||||||
|
VERSION=`agvtool mvers -terse1`
|
||||||
|
BUILD=`agvtool vers -terse`
|
||||||
|
git tag "v$VERSION-a$BUILD"
|
|
@ -1,3 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
ci/store-deploy.sh mac || { echo "Failed to deploy macOS" ; exit 1 ; }
|
ci/store-deploy.sh mac || { echo "Failed to deploy macOS" ; exit 1 ; }
|
||||||
ci/beta-deploy.sh ios || { echo "Failed to deploy iOS" ; exit 1 ; }
|
ci/beta-deploy.sh ios || { echo "Failed to deploy iOS" ; exit 1 ; }
|
||||||
|
|
||||||
|
VERSION=`agvtool mvers -terse1`
|
||||||
|
BUILD=`agvtool vers -terse`
|
||||||
|
git tag "v$VERSION-b$BUILD"
|
Loading…
Reference in New Issue