github.com/jghiloni/cli@v6.28.1-0.20170628223758-0ce05fe032a2+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