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 5f255a8 commit 6bc2b5bCopy full SHA for 6bc2b5b
scripts/autorelease.sh
@@ -37,6 +37,8 @@ do_release() {
37
git tag -a $tag_name -m "$tag_name"
38
git push --tags
39
gh release create $tag_name --target $1 --title "$tag_name" --notes ""
40
+ # now delete local tag to prevent messing up the detected tag for the next version
41
+ git tag -d $tag_name &>/dev/null
42
}
43
44
for version in "${all_versions[@]}"; do
0 commit comments