1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2024-12-14 11:57:51 +00:00

Makefile: fix version parsing

One bit that was accidentally left out from
047d0314aa
This commit is contained in:
Markus Lehtonen 2024-12-13 10:49:42 +02:00
parent 1ecb1c7b22
commit 55961cc337

View file

@ -29,7 +29,7 @@ SITE_BASEURL ?=
SITE_DESTDIR ?= _site
JEKYLL_OPTS := -d '$(SITE_DESTDIR)' $(if $(SITE_BASEURL),-b '$(SITE_BASEURL)',)
VERSION := $(shell git describe --tags --dirty --always)
VERSION := $(shell git describe --tags --dirty --always --match "v*")
IMAGE_REGISTRY ?= registry.k8s.io/nfd
IMAGE_TAG_NAME ?= $(VERSION)