Tweak release process

This commit is contained in:
Roland Rabien 2023-10-05 06:37:27 -07:00
commit c754f51e02
4 changed files with 42 additions and 2 deletions

10
tag.sh Executable file
View file

@ -0,0 +1,10 @@
#!/bin/bash -e
cd "$(dirname "$0")"
ROOT=$(pwd)
cd $ROOT
VER=`cat VERSION`
echo "Tagging [$VER]"
git tag "$VER" && git push origin "$VER"