From 24fea7b8a84dcccbc6aa1eeb78cb7f28e4bbff2d Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Thu, 19 Mar 2026 16:29:47 -0400 Subject: [PATCH] ci(container): fix digest image reference for manifest Signed-off-by: Seth Flynn --- .github/workflows/container.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 52c30f032..514197f80 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -161,7 +161,7 @@ jobs: IMAGE_NAME: ${{ needs.build.outputs.image-name }} run: | podman manifest create "$IMAGE_NAME" \ - $(printf "$IMAGE_NAME:%s " *) + $(printf "$IMAGE_NAME@sha256:%s " *) - name: Push manifest uses: redhat-actions/push-to-registry@v2