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 7c3a1cd commit cd31740Copy full SHA for cd31740
.github/workflows/release.yaml
@@ -36,8 +36,8 @@ jobs:
36
- name: Verify signed release
37
if: startsWith(github.ref, 'refs/tags/v')
38
run: |
39
- git -P show ${{ github.event.inputs.tag }} | grep -q 'PGP SIGNATURE' || \
40
- { echo "No PGP signature found for tag ${{ github.event.inputs.tag }}. Aborting release process..."; exit 1; }
+ git -P show ${GITHUB_REF_NAME} | grep -q 'PGP SIGNATURE' || \
+ { echo "No PGP signature found for tag $GITHUB_REF_NAME}. Aborting release process..."; exit 1; }
41
- name: Prepare
42
id: prep
43
0 commit comments