cdn/vendor/github.com/a-h/templ/push-tag.sh

6 lines
136 B
Bash

#!/bin/sh
export VERSION=`cat .version`
echo Adding git tag with version v${VERSION};
git tag v${VERSION};
git push origin v${VERSION};