github.com/willmadison/cli@v6.40.1-0.20181018160101-29d5937903ff+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