Skip to content

Commit

Permalink
Fix double beta string in tag
Browse files Browse the repository at this point in the history
  • Loading branch information
griff committed Sep 10, 2017
1 parent dc215f6 commit e28dd44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Scripts/tag-beta.bash
Expand Up @@ -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
Expand Down

0 comments on commit e28dd44

Please sign in to comment.