From 2f31dcda7f579527132e3ae1c9eb19483f2144e7 Mon Sep 17 00:00:00 2001 From: Brian Goff Date: Mon, 15 Nov 2021 20:05:17 +0000 Subject: [PATCH] release: change tar name to match prior releases In prior releases we were not using this variable and instead were self-constructing a release tar file. This was changed in 27d7c50384b11d6a3c5982c7e20e89ec360d542a The change means the variable is being used now and is causing the artifacts to be produced to have a different name which may break download scripts. Signed-off-by: Brian Goff --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cbf03e783..75669b4e3 100644 --- a/Makefile +++ b/Makefile @@ -74,7 +74,7 @@ endif WHALE = "🇩" ONI = "👹" -RELEASE=containerd-$(VERSION:v%=%).${GOOS}-${GOARCH} +RELEASE=containerd-$(VERSION:v%=%)-${GOOS}-${GOARCH} CRIRELEASE=cri-containerd-$(VERSION:v%=%)-${GOOS}-${GOARCH} CRICNIRELEASE=cri-containerd-cni-$(VERSION:v%=%)-${GOOS}-${GOARCH}