From facb2c4bd020f018d09cdacdaab14dacaab4fc14 Mon Sep 17 00:00:00 2001 From: Robert Sturla Date: Mon, 1 Jul 2024 12:17:20 +0100 Subject: [PATCH] Disable --all flag in push --- .github/actions/push-image-podman/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/push-image-podman/action.yml b/.github/actions/push-image-podman/action.yml index 42c7f618..def78d6a 100644 --- a/.github/actions/push-image-podman/action.yml +++ b/.github/actions/push-image-podman/action.yml @@ -169,7 +169,7 @@ runs: for manifest_name in "${manifest_names_array[@]}"; do echo "Pushing manifest: ${manifest_name}" podman manifest inspect ${manifest_name} - ${GITHUB_ACTION_PATH}/retry.sh ${RETRIES} podman manifest push --all --format="${IMAGE_FORMAT}" ${manifest_name} + ${GITHUB_ACTION_PATH}/retry.sh ${RETRIES} podman manifest push --all=false --format="${IMAGE_FORMAT}" ${manifest_name} manifest_digests+=($(skopeo inspect docker://${manifest_name} --format '{{.Digest}}')) done echo "digest=${manifest_digests[0]}" >> $GITHUB_OUTPUT