github.com/randomtask1155/cli@v6.41.1-0.20181227003417-a98eed78cbde+incompatible/bin/tag-version (about) 1 #!/usr/bin/env bash 2 3 set -e 4 5 version=$(cat BUILD_VERSION) 6 7 echo "Creating v$version tag at current version" 8 git tag v$version 9 git push --tags