From a59ae761f375f8e1aa493388c67035f63ac16482 Mon Sep 17 00:00:00 2001 From: Jonas Forsberg Date: Mon, 17 Apr 2023 10:17:50 +0200 Subject: [PATCH] added latest tag in release --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 887b7d8..12b253c 100644 --- a/Makefile +++ b/Makefile @@ -33,4 +33,6 @@ 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 push origin v$(VERSION) + podman tag ${REPO}/${IMAGENAME}:$(VERSION) ${REPO}/${IMAGENAME}:latest podman push --creds $(USERNAME):$(PASSWORD) ${REPO}/${IMAGENAME}:$(VERSION) + podman push --creds $(USERNAME):$(PASSWORD) ${REPO}/${IMAGENAME}:latest