tools/maintainer: Don't tag immediately when updating the version

We're tagging the release (with a signed, annotated tag) a bit later, do not tag
it during the version bump immediately.

Signed-off-by: Gergely Nagy <algernon@keyboard.io>
This commit is contained in:
Gergely Nagy
2023-05-06 19:39:01 +02:00
parent bc22bf42b5
commit ade112cf9f

View File

@@ -87,7 +87,7 @@ update_version() {
VERSION="$(release_version)"
## Update package.json
yarn version --new-version=${VERSION}
yarn version --new-version=${VERSION} --no-git-tag-version
## Update NEWS.md
TMP=$(mktemp)