mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2024-12-27 03:42:39 +00:00
10 lines
261 B
Bash
Executable File
10 lines
261 B
Bash
Executable File
#!/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"
|
|
|
|
scripts/reset-archive.sh
|