Skip to content

Commit

Permalink
Disable --all flag in push
Browse files Browse the repository at this point in the history
  • Loading branch information
p5 committed Jul 1, 2024
1 parent a0ad95f commit facb2c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/push-image-podman/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit facb2c4

Please sign in to comment.