From e28dd44a9bfd2a507e7d43fc9c388f463ce3e570 Mon Sep 17 00:00:00 2001 From: Brian Olsen Date: Sun, 10 Sep 2017 21:27:43 +0200 Subject: [PATCH] Fix double beta string in tag --- Scripts/tag-beta.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/tag-beta.bash b/Scripts/tag-beta.bash index 6e32a48d..93c74c7a 100644 --- a/Scripts/tag-beta.bash +++ b/Scripts/tag-beta.bash @@ -3,7 +3,7 @@ if [[ "$TRAVIS_BRANCH" != "$TRAVIS_TAG" ]]; then git config --global user.email "builds@travis-ci.com" git config --global user.name "Travis CI" - export GIT_TAG=v${VERSION}.beta-$TRAVIS_BUILD_NUMBER + export GIT_TAG=v${VERSION} echo git tag $GIT_TAG -a -m "Generated tag from TravisCI for build $TRAVIS_BUILD_NUMBER" git tag $GIT_TAG -a -m "Generated tag from TravisCI for build $TRAVIS_BUILD_NUMBER" git push -q https://$GITHUB_TOKEN@github.com/griff/metaz --tags