Skip to content

Commit

Permalink
chore: start release tags with v, e.g. v1.0.0 instead of 1.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander zur Bonsen <[email protected]>
  • Loading branch information
alexzurbonsen committed Jan 22, 2025
1 parent 7d8254a commit 12e7032
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/publish_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ npm run build
echo -e "\n${VIOLET}Building successful${NC}"

echo -e "\n${VIOLET}Create version tag${NC}"
git tag -a ${VERSION} -m "Release version ${VERSION}"
git tag -a "v${VERSION}" -m "Release version ${VERSION}"
git push --tags

echo -e "\n${VIOLET}Publishing package${NC}"
Expand Down

0 comments on commit 12e7032

Please sign in to comment.