From 639c2391e85f7dc4d3fcb887db8df7be13786046 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sat, 21 Mar 2026 17:44:35 +0100 Subject: [PATCH] Use podman manifest push instead of podman push. --- .github/workflows/docker-images.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-images.yml b/.github/workflows/docker-images.yml index 44aeec98..fa92456b 100644 --- a/.github/workflows/docker-images.yml +++ b/.github/workflows/docker-images.yml @@ -77,11 +77,11 @@ jobs: env: IMAGE: ${{ matrix.name }}:${{ matrix.tag }} run: >- - podman push "${IMAGE}" "${CONTAINER_REGISTRY}/${IMAGE}" --all --tls-verify=true --creds=${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} + podman manifest push --all "${IMAGE}" "${CONTAINER_REGISTRY}/${IMAGE}" --tls-verify=true --creds=${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} - name: Publish container image ${{ env.CONTAINER_REGISTRY }}/${{ matrix.name }}:latest if: github.event_name != 'pull_request' && matrix.tag-as-latest && matrix.tag != 'latest' env: IMAGE: ${{ matrix.name }}:latest run: >- - podman push "${IMAGE}" "${CONTAINER_REGISTRY}/${IMAGE}" --all --tls-verify=true --creds=${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} + podman manifest push --all "${IMAGE}" "${CONTAINER_REGISTRY}/${IMAGE}" --tls-verify=true --creds=${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}