From a5f03d96d5b8b924b2e920154c4253202c395e23 Mon Sep 17 00:00:00 2001 From: Scott Andrews Date: Thu, 23 Jul 2026 21:33:22 -0400 Subject: [PATCH] Fix published component tag construction Signed-off-by: Scott Andrews --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 10ab8f7..9918452 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ endif @$(eval COMPONENT := $(FILE:%.wasm=%)) # @$(eval DESCRIPTION := $(shell head -n 3 "lib/${FILE}.md" | tail -n 1)) @$(eval REVISION := $(shell git rev-parse HEAD)$(shell git diff --quiet HEAD && echo "+dirty")) - @$(eval TAG := $(shell echo "${VERSION#v}" | tr '+' '_')) + @$(eval TAG := $(patsubst v%,%,$(subst +,_,$(VERSION)))) # --annotation "org.opencontainers.image.description=${DESCRIPTION}" \