ci(container): create manifests for all tags

Signed-off-by: Seth Flynn <getchoo@tuta.io>
This commit is contained in:
Seth Flynn 2026-03-19 18:59:01 -04:00
parent 5cf20d935d
commit b7677c81d2
No known key found for this signature in database
GPG key ID: D31BD0D494BBEE86

View file

@ -160,8 +160,10 @@ jobs:
env: env:
IMAGE_NAME: ${{ needs.build.outputs.image-name }} IMAGE_NAME: ${{ needs.build.outputs.image-name }}
run: | run: |
podman manifest create "$IMAGE_NAME" \ while read -r tag; do
$(printf "$IMAGE_NAME@sha256:%s " *) podman manifest create "$tag" \
$(printf "$IMAGE_NAME@sha256:%s " *)
done <<< "$DOCKER_METADATA_OUTPUT_TAGS"
- name: Push manifest - name: Push manifest
uses: redhat-actions/push-to-registry@v2 uses: redhat-actions/push-to-registry@v2