From c4d0c922d16ab3758d2f4cac3480066ed30c46e2 Mon Sep 17 00:00:00 2001 From: Casey Davenport Date: Mon, 14 Dec 2020 12:37:12 -0800 Subject: [PATCH] Fix make cd target to use correct tag for docker images (#2236) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6c99db29b..77874bbff 100644 --- a/Makefile +++ b/Makefile @@ -341,7 +341,7 @@ ifndef BRANCH_NAME $(error BRANCH_NAME is undefined - run using make BRANCH_NAME=var or set an environment variable) endif $(MAKE) tag-images-all push-all push-manifests push-non-manifests IMAGETAG=${BRANCH_NAME} EXCLUDEARCH="$(EXCLUDEARCH)" - $(MAKE) tag-images-all push-all push-manifests push-non-manifests IMAGETAG=${GIT_VERSION} EXCLUDEARCH="$(EXCLUDEARCH)" + $(MAKE) tag-images-all push-all push-manifests push-non-manifests IMAGETAG=$(shell git describe --tags --dirty --always --long --abbrev=12) EXCLUDEARCH="$(EXCLUDEARCH)" ############################################################################### # Release