Split submission to AppCenter and App Store

Tag at the end.
This commit is contained in:
Davide De Rosa 2021-01-30 10:19:05 +01:00
parent 48d3c360ae
commit 5a7211132e
3 changed files with 12 additions and 1 deletions

@ -1 +1 @@
Subproject commit 0c3145c150fa278e9c718763e33864757f8948b6 Subproject commit 2abf37faeea34aa5647be1bd21abd0e0663ac0ee

7
scripts/submit-appcenter.sh Executable file
View File

@ -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"

View File

@ -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"