From a5a6da8a4525608d162a72bb0c7ae8d31e5cde97 Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Tue, 17 Mar 2026 20:22:54 -0400 Subject: [PATCH] ci(container): login to ghcr to fetch digests for manifest Podman should be able to find the images we push in the previous step now........hopefully Signed-off-by: Seth Flynn --- .github/workflows/container.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 9326c18cb..52c30f032 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -46,7 +46,7 @@ jobs: - name: Install Podman uses: redhat-actions/podman-install@main # TODO(@getchoo): Always use this when the action properly supports ARM - if: ${{ runner.arch == 'X64' }} + if: ${{ runner.arch == 'X64' || runner.arch == 'X86' }} with: github-token: ${{ github.token }} @@ -127,11 +127,18 @@ jobs: - name: Install Podman # TODO(@getchoo): Always use this when the action properly supports ARM - if: ${{ runner.arch == 'X64' }} + if: ${{ runner.arch == 'X64' || runner.arch == 'X86' }} uses: redhat-actions/podman-install@main 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