Version scripts.

This commit is contained in:
aminecmi
2022-09-07 20:24:19 +02:00
parent 815f00e764
commit 1dfa3c9f07
3 changed files with 1 additions and 1 deletions

11
version.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
# You can pass --force as first parameter to force push and tag creation.
echo "Creating tag $@"
TAG="v$@"
git tag ${TAG}
echo "Pushing tag"
git push origin ${TAG}