Only tag after successful deploy
This commit is contained in:
parent
42ff5a0642
commit
250e733a04
|
@ -1,5 +1,4 @@
|
|||
#!/bin/sh
|
||||
TARGET="beta" bundle exec fastlane --env secret-deploy,beta-deploy beta_deploy
|
||||
VERSION=`agvtool mvers -terse1`
|
||||
BUILD=`agvtool vers -terse`
|
||||
git tag "v$VERSION-b$BUILD"
|
||||
TARGET="beta" bundle exec fastlane --env secret-deploy,beta-deploy beta_deploy && git tag "v$VERSION-b$BUILD"
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/bin/sh
|
||||
TARGET="dev" bundle exec fastlane --env secret-deploy,dev-deploy dev_deploy
|
||||
VERSION=`agvtool mvers -terse1`
|
||||
BUILD=`agvtool vers -terse`
|
||||
#git tag "v$VERSION-a$BUILD"
|
||||
TARGET="dev" bundle exec fastlane --env secret-deploy,dev-deploy dev_deploy #&& git tag "v$VERSION-a$BUILD"
|
||||
|
|
Loading…
Reference in New Issue