We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc213e7 commit 2c29ce9Copy full SHA for 2c29ce9
.github/workflows/release.yaml
@@ -36,9 +36,7 @@ jobs:
36
- name: Verify signed release
37
if: startsWith(github.ref, 'refs/tags/v')
38
run: |
39
- if git -P show ${GITHUB_REF_NAME} | grep -q 'END PGP SIGNATURE'; then
40
- echo "PGP signature found for ${GITHUB_REF_NAME} tag."
41
- else
+ if git tag -v ${GITHUB_REF_NAME} | grep 'no signature found'; then
42
echo "No PGP signature found for tag ${GITHUB_REF_NAME}. Aborting release process..."
43
exit 1
44
fi
0 commit comments