From 81870c0c6d460566f696ff7f2854267dfa9e6bd7 Mon Sep 17 00:00:00 2001 From: David Marteau Date: Fri, 27 Sep 2024 15:09:12 +0200 Subject: [PATCH] [CI] Fix release scripts and version --- config.mk | 2 +- tests/check_tag.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.mk b/config.mk index cd75062..a795fd0 100644 --- a/config.mk +++ b/config.mk @@ -1,7 +1,7 @@ # Project version -VERSION:=1.9 +VERSION:=1.9.0 ifndef CI_COMMIT_TAG VERSION_TAG=$(VERSION)rc0 diff --git a/tests/check_tag.sh b/tests/check_tag.sh index 7b4ad44..f8309df 100755 --- a/tests/check_tag.sh +++ b/tests/check_tag.sh @@ -1,7 +1,7 @@ #!/bin/bash VERSION=$1 -METADATA=$(cat Makefile | grep "VERSION:=" | cut -d '=' -f2) +METADATA=$(cat config.mk | grep "VERSION:=" | cut -d '=' -f2) if [ "$METADATA" != "$VERSION" ]; then