Skip to content

Commit

Permalink
Makefile: fix version parsing
Browse files Browse the repository at this point in the history
One bit that was accidentally left out from
047d031
  • Loading branch information
marquiz committed Dec 13, 2024
1 parent 1ecb1c7 commit 55961cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 55961cc

Please sign in to comment.