github.com/cloudfoundry-community/cloudfoundry-cli@v6.44.1-0.20240130060226-cda5ed8e89a5+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