From feb6a81b085a13ea0d33dd49770ffac966145079 Mon Sep 17 00:00:00 2001 From: Andrej Krejcir Date: Mon, 9 Dec 2024 15:54:54 +0100 Subject: [PATCH] makefile: Fix podman manifest push command On older versions of podman, the command requires 2 arguments. We need it for the release workflow that runs Ubuntu 22.04 with podman v3.4.4. Signed-off-by: Andrej Krejcir --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4278b13a9..3820a83eb 100644 --- a/Makefile +++ b/Makefile @@ -205,7 +205,7 @@ container-build: unittest bundle # Push the container image .PHONY: container-push container-push: - podman manifest push ${IMG} + podman manifest push ${IMG} ${IMG} .PHONY: build-template-validator build-template-validator: @@ -219,7 +219,7 @@ build-template-validator-container: .PHONY: push-template-validator-container push-template-validator-container: - podman manifest push ${VALIDATOR_IMG} + podman manifest push ${VALIDATOR_IMG} ${VALIDATOR_IMG} ##@ Build Dependencies