We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7b5fe1 commit f39ebaaCopy full SHA for f39ebaa
tag-v1.sh
@@ -0,0 +1,10 @@
1
+#!/bin/bash
2
+
3
+tag="$1"
4
+echo "Tagging $tag and updating v1 tag"
5
+git tag -d v1
6
+git push origin :v1
7
+git tag $tag
8
+git push origin $tag
9
+git tag v1
10
+git push origin v1
0 commit comments