Update scripts

This commit is contained in:
Tobias Reisinger 2024-04-30 18:24:24 +02:00
parent 2c84b2effa
commit 34cb04dc6d
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
5 changed files with 45 additions and 14 deletions

View file

@ -1,10 +1,10 @@
#!/usr/bin/env sh
echo "Deleting tag from origin"
git push --delete origin "$1"
git push --delete origin "v$1"
echo "Deleting tag locally"
git tag -d "$1"
git tag -d "v$1"
echo "Recreating tag"
git tag -s -m "$1" "$1"
git vtag "$1"