We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f77221d commit 1bf64f9Copy full SHA for 1bf64f9
scripts/autorelease.sh
@@ -27,6 +27,8 @@ do_release() {
27
echo "we think the current tag is $(git describe --tags --abbrev=0)"
28
echo "the current commit head is $(git rev-parse HEAD)"
29
read -p "new tag name: " tag_name
30
+ git tag -a $tag_name -m "$tag_name"
31
+ git push --tags
32
gh release create $tag_name --target $1 --title "$tag_name" --notes ""
33
}
34
0 commit comments