Skip to content

Commit

Permalink
makefile: Fix podman manifest push command
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
akrejcir authored and kubevirt-bot committed Dec 10, 2024
1 parent 5b3a952 commit 4f86728
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 4f86728

Please sign in to comment.