From 367de94f310c70c846df3a9b58e9f9595c46d6b9 Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Mon, 9 Mar 2026 21:05:31 -0400 Subject: [PATCH] ci(container): try to fix manifest creation Signed-off-by: Seth Flynn --- .github/workflows/container.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 15a87186b..fa7b1cc73 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -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@v5 @@ -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