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