From fad08d9a0a705160a049dece04ee30df9c1b7d83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kim=20=E9=87=91=E5=8F=AF=E6=98=8E?= Date: Thu, 10 Aug 2023 13:19:27 +0200 Subject: [PATCH] chore: update release script to automatically add tag --- scripts/release.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/release.sh b/scripts/release.sh index ab7854fe..48f167c6 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -35,5 +35,6 @@ git diff .version helper/Cargo.toml echo "Committing the above changes..." git add .version helper/Cargo.toml git commit -m "chore(release): v$next_version :tada:" +git tag -a "v$next_version" -m "Release v$next_version" echo "Done, make sure to push the changes made"