|
run: cosign sign --yes --key env://COSIGN_PRIVATE_KEY docker.io/wollomatic/socket-proxy:${{ steps.get_tag.outputs.VERSION }}@${{ steps.build-and-push.outputs.digest }} |
For podman to be able to verify containers using the cosign key, every images referenced in the multi-arch manifest must be signed. This can be done by adding --recursive to the cosign command.
Ref: containers/podman#21209