From 4b04a89662569e8e71732e0cc1ef6379323858b2 Mon Sep 17 00:00:00 2001 From: Scott Andrews Date: Thu, 23 Jul 2026 21:45:28 -0400 Subject: [PATCH] Fix published component tag construction Signed-off-by: Scott Andrews --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 06fa735..c1c8734 100644 --- a/Makefile +++ b/Makefile @@ -62,8 +62,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)))) @echo "::group::${FILE} -> ${REPOSITORY}/${COMPONENT}:${TAG}" @DIGEST=$$( \