Sha256: 7547f42f85e8f91533d0442f72138e08552a67df293fab21a7b22c061f942f6f

Contents?: true

Size: 294 Bytes

Versions: 6

Compression:

Stored size: 294 Bytes

Contents

#!/bin/bash

# This gets run as a post-commit hook after merge to add the version tag so it
# is easy to determine what changes are in a particular build.
#
# https://expeditor.chef.io/docs/reference/action-filters/#post-commit


VERSION=`cat VERSION`

git tag $VERSION
git push origin $VERSION

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
omnibus-software-23.7.295 .expeditor/push_git_tag.sh
omnibus-software-23.6.292 .expeditor/push_git_tag.sh
omnibus-software-23.6.291 .expeditor/push_git_tag.sh
omnibus-software-23.2.283 .expeditor/push_git_tag.sh
omnibus-software-23.2.281 .expeditor/push_git_tag.sh
omnibus-software-22.11.239 .expeditor/push_git_tag.sh