pipeline: fix VERSION_NUMBER

This commit is contained in:
6543 2023-08-17 14:20:06 +02:00
parent 24910b67b2
commit 2d0a6e7702
No known key found for this signature in database
GPG key ID: B8BE6D610E61C862

View file

@ -15,7 +15,7 @@ CI_COMMIT_SHA ?= $(shell git rev-parse HEAD)
# it's a tagged release
ifneq ($(CI_COMMIT_TAG),)
BUILD_VERSION := $(CI_COMMIT_TAG:v%=%)
VERSION_NUMBER := ${VERSION}
VERSION_NUMBER := ${CI_COMMIT_TAG:v%=%}
else
# append commit-sha to next version
ifeq ($(VERSION),next)