github.com/loggregator/cli@v6.33.1-0.20180224010324-82334f081791+incompatible/bin/tag-version (about) 1 #!/usr/bin/env bash 2 3 set -e 4 5 ROOT_DIR=$(cd $(dirname $(dirname $0)) && pwd) 6 version=$(cat ci/VERSION) 7 8 echo "Creating v$version tag at current version" 9 git tag v$version 10 git push --tags