Fix reset before tagging
This commit is contained in:
parent
d76a248bd0
commit
a84eea5694
|
@ -1,8 +1,9 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
ci/dev-deploy.sh mac || { echo "Failed to deploy macOS" ; exit 1 ; }
|
ci/dev-deploy.sh mac || { echo "Failed to deploy macOS" ; exit 1 ; }
|
||||||
ci/dev-deploy.sh ios || { echo "Failed to deploy iOS" ; exit 1 ; }
|
ci/dev-deploy.sh ios || { echo "Failed to deploy iOS" ; exit 1 ; }
|
||||||
scripts/reset-archive.sh
|
|
||||||
|
|
||||||
VERSION=`agvtool mvers -terse1`
|
VERSION=`agvtool mvers -terse1`
|
||||||
BUILD=`agvtool vers -terse`
|
BUILD=`agvtool vers -terse`
|
||||||
git tag "v$VERSION-a$BUILD"
|
git tag "v$VERSION-a$BUILD"
|
||||||
|
|
||||||
|
scripts/reset-archive.sh
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
#!/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 ; }
|
||||||
scripts/reset-archive.sh
|
|
||||||
|
|
||||||
VERSION=`agvtool mvers -terse1`
|
VERSION=`agvtool mvers -terse1`
|
||||||
BUILD=`agvtool vers -terse`
|
BUILD=`agvtool vers -terse`
|
||||||
git tag "v$VERSION-b$BUILD"
|
git tag "v$VERSION-b$BUILD"
|
||||||
|
|
||||||
|
scripts/reset-archive.sh
|
||||||
|
|
Loading…
Reference in New Issue