From b7677c81d2fb28a1452362af1f06e47b93ff944b Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Thu, 19 Mar 2026 18:59:01 -0400 Subject: [PATCH] ci(container): create manifests for all tags Signed-off-by: Seth Flynn --- .github/workflows/container.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 514197f80..a5dcdc48a 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -160,8 +160,10 @@ jobs: env: IMAGE_NAME: ${{ needs.build.outputs.image-name }} run: | - podman manifest create "$IMAGE_NAME" \ - $(printf "$IMAGE_NAME@sha256:%s " *) + while read -r tag; do + podman manifest create "$tag" \ + $(printf "$IMAGE_NAME@sha256:%s " *) + done <<< "$DOCKER_METADATA_OUTPUT_TAGS" - name: Push manifest uses: redhat-actions/push-to-registry@v2