Update tag and release scripts

This commit is contained in:
Roland Rabien 2026-01-10 13:52:42 -08:00
commit 6c0dc53509
2 changed files with 27 additions and 1 deletions

7
tag.sh
View file

@ -6,5 +6,12 @@ ROOT=$(pwd)
cd $ROOT
VER=`cat VERSION`
# Check that the version exists in the Changelist.txt
if ! grep -q "^${VER}:*$" Changelist.txt; then
echo "Error: Version $VER not found in Changelist.txt"
exit 1
fi
echo "Tagging [$VER]"
git tag "$VER" && git push origin "$VER"