fix cosign verify command

rel #280
This commit is contained in:
Tobias Lindberg
2024-04-08 23:33:30 +02:00
parent 99c736955d
commit 6a39d8ae10

View File

@@ -115,14 +115,14 @@ jobs:
run: |
echo "::group::Verify signature (DockerHub)"
cosign verify --rekor-url https://rekor.sigstore.dev \
--certificate-identity "https://github.com/${{ github.repository }}" \
--certificate-identity "https://github.com/${{ github.workflow_ref }}" \
--certificate-oidc-issuer "https://token.actions.githubusercontent.com" \
tobiasehlert/teslamateapi@${{ steps.docker_build.outputs.digest }}
echo "::endgroup::"
echo "::group::Verify signature (GitHub Container Registry)"
cosign verify --rekor-url https://rekor.sigstore.dev \
--certificate-identity "https://github.com/${{ github.repository }}" \
--certificate-identity "https://github.com/${{ github.workflow_ref }}" \
--certificate-oidc-issuer "https://token.actions.githubusercontent.com" \
ghcr.io/tobiasehlert/teslamateapi@${{ steps.docker_build.outputs.digest }}
echo "::endgroup::"