From cd1dce8b8d4a85b2332238dce2e7be4af9875fca Mon Sep 17 00:00:00 2001 From: Jeff Dickey <216188+jdx@users.noreply.github.com> Date: Thu, 4 Jan 2024 11:30:04 -0600 Subject: [PATCH] fixed version script --- scripts/postversion.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/postversion.sh b/scripts/postversion.sh index 4aed6ed..ab5a8c3 100755 --- a/scripts/postversion.sh +++ b/scripts/postversion.sh @@ -8,8 +8,8 @@ git push # push the current tag to github git push origin "v$VERSION" # set the v1 tag to this release -git tag v1 -f +git tag v2 -f # push the v1 tag to github -git push origin v1 -f +git push origin v2 -f # create a release on github gh release create "v$VERSION" --generate-notes --verify-tag