ci(container): try to fix manifest creation (#5157)

This commit is contained in:
Seth Flynn 2026-03-12 07:45:23 +00:00 committed by GitHub
commit 8cb9262b09
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -132,13 +132,6 @@ jobs:
with:
github-token: ${{ github.token }}
- name: Login to registry
uses: redhat-actions/podman-login@v1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ github.token }}
- name: Determine metadata for manifest
id: manifest-metadata
uses: docker/metadata-action@v6
@ -161,7 +154,7 @@ jobs:
IMAGE_NAME: ${{ needs.build.outputs.image-name }}
run: |
podman manifest create "$IMAGE_NAME" \
$(printf '%s ' *)
$(printf "$IMAGE_NAME:%s " *)
- name: Push manifest
uses: redhat-actions/push-to-registry@v2