From 4ec521361d4c4c0ef6302f245653f9969af995cc Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Mon, 3 Feb 2025 18:30:58 +0100 Subject: [PATCH] build(Makefile): fix release target [skip ci] --- Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 49ae3443f..60564272f 100644 --- a/Makefile +++ b/Makefile @@ -80,10 +80,9 @@ clean-all: clean .PHONY: release # HELP: create, commit and push a new release release: - ./.gitlab-ci/version.pl -changelog CHANGELOG.md - git add CHANGELOG.md - VERSION=`.gitlab-ci/version.pl` - git tag $${VERSION} + VERSION=`./utils/version.pl -changelog CHANGELOG.md` ; \ + git add CHANGELOG.md ; \ + git tag $${VERSION} ; \ git commit -m "chore(release): $${VERSION}" # git push