From 2dab884fb62f68bf05c0fdc13d7a5885bb82ba9e Mon Sep 17 00:00:00 2001 From: Marco Maurer Date: Wed, 13 Dec 2023 18:10:38 +0100 Subject: [PATCH] fix: Exclude helm chart tags from appVersion calculation --- Makefile | 2 +- backend/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index cea7a9f33..718d33503 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ GO111MODULE=on export GO111MODULE -TAG := `git describe --tags --always` +TAG := `git describe --tags --always --exclude 'nebraska-helm*'` SHELL = /bin/bash DOCKER_CMD ?= "docker" DOCKER_REPO ?= "ghcr.io/kinvolk" diff --git a/backend/Makefile b/backend/Makefile index 3acd9f7fa..5c7966a03 100644 --- a/backend/Makefile +++ b/backend/Makefile @@ -1,7 +1,7 @@ GO111MODULE=on export GO111MODULE -TAG := `git describe --tags --always` +TAG := `git describe --tags --always --exclude 'nebraska-helm*'` SHELL = /bin/bash DOCKER_CMD ?= "docker" DOCKER_REPO ?= "ghcr.io/kinvolk"