Fix reset before tagging

This commit is contained in:
Davide De Rosa 2021-02-07 13:57:43 +01:00
parent d76a248bd0
commit a84eea5694
2 changed files with 4 additions and 2 deletions

View File

@ -1,8 +1,9 @@
#!/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`
git tag "v$VERSION-a$BUILD"
scripts/reset-archive.sh

View File

@ -1,8 +1,9 @@
#!/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`
git tag "v$VERSION-b$BUILD"
scripts/reset-archive.sh