From 8064d08c58d7c8a1da61f62f99f01c6ac87a9da8 Mon Sep 17 00:00:00 2001 From: Jonas Forsberg Date: Mon, 17 Apr 2023 14:20:39 +0200 Subject: [PATCH] more verbose tag message --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 12b253c..3cce1b9 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ clean: release: require_clean_git build $(eval TMP_MESSAGE := $(shell podman run --rm -it ${REPO}/${IMAGENAME}:$(VERSION) /usr/sbin/dnsmasq --version)) - git tag -a v$(VERSION) -m "${TMP_MESSAGE}" + git tag -a v$(VERSION) -m "dnsmasq version: ${TMP_MESSAGE}" git push origin v$(VERSION) podman tag ${REPO}/${IMAGENAME}:$(VERSION) ${REPO}/${IMAGENAME}:latest podman push --creds $(USERNAME):$(PASSWORD) ${REPO}/${IMAGENAME}:$(VERSION)