mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-01-31 21:12:10 +00:00
5a7211132e
Tag at the end.
8 lines
238 B
Bash
Executable File
8 lines
238 B
Bash
Executable File
#!/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 ; }
|
|
|
|
VERSION=`agvtool mvers -terse1`
|
|
BUILD=`agvtool vers -terse`
|
|
git tag "v$VERSION-b$BUILD"
|