From cad90c7ac15f3c02ef84b6d5b489b06d1670eeb2 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Tue, 20 Dec 2022 12:27:04 -0800 Subject: [PATCH] Makefile: publish release docker images at DockerHub with the `stable` tag Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/2911 --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 7a26efdc4..e14f0b5f9 100644 --- a/Makefile +++ b/Makefile @@ -167,10 +167,10 @@ vmutils-crossbuild: \ vmutils-windows-amd64 publish-release: - git checkout $(TAG) && $(MAKE) release publish && \ - git checkout $(TAG)-cluster && $(MAKE) release publish && \ - git checkout $(TAG)-enterprise && $(MAKE) release publish && \ - git checkout $(TAG)-enterprise-cluster && $(MAKE) release publish + git checkout $(TAG) && LATEST_TAG=stable $(MAKE) release publish && \ + git checkout $(TAG)-cluster && LATEST_TAG=cluster-stable $(MAKE) release publish && \ + git checkout $(TAG)-enterprise && LATEST_TAG=enterprise-stable $(MAKE) release publish && \ + git checkout $(TAG)-enterprise-cluster && LATEST_TAG=enterprise-cluster-stable $(MAKE) release publish release: \ release-victoria-metrics \