github.com/nimakaviani/cli@v6.37.1-0.20180619223813-e734901a73fa+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