Skip to content

Commit

Permalink
Add tag-v1.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
sjohnr committed May 3, 2022
1 parent b7b5fe1 commit f39ebaa
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tag-v1.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash

tag="$1"
echo "Tagging $tag and updating v1 tag"
git tag -d v1
git push origin :v1
git tag $tag
git push origin $tag
git tag v1
git push origin v1

0 comments on commit f39ebaa

Please sign in to comment.