Skip to content

Commit

Permalink
Merge pull request #1981 from marquiz/devel/fix-version-parsing-2
Browse files Browse the repository at this point in the history
Makefile: fix version parsing
  • Loading branch information
k8s-ci-robot authored Dec 13, 2024
2 parents 1ecb1c7 + 55961cc commit 68e1108
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 68e1108

Please sign in to comment.