From c37c93293d6b742fc901e1406b8f764f6fb19dac Mon Sep 17 00:00:00 2001 From: jdx <216188+jdx@users.noreply.github.com> Date: Sun, 27 Jul 2025 14:01:32 -0500 Subject: [PATCH] fix: v2 release tag automation --- scripts/postversion.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/postversion.sh b/scripts/postversion.sh index ea7a2b8..d515de4 100755 --- a/scripts/postversion.sh +++ b/scripts/postversion.sh @@ -4,6 +4,9 @@ set -euxo pipefail VERSION=$(jq -r .version package.json) MAJOR_VERSION=$(echo "$VERSION" | cut -d. -f1) +# create the version tag +git tag "v$VERSION" + # push changes to github git push # push the current tag to github