Skip to content

Commit

Permalink
Add check for PGP signed tags to release workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Prodan <[email protected]>
  • Loading branch information
stefanprodan committed Jun 30, 2023
1 parent cd31740 commit 73dec0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v')
run: |
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; }
{ echo "No PGP signature found for tag ${GITHUB_REF_NAME}. Aborting release process..."; exit 1; }
- name: Prepare
id: prep
run: |
Expand Down

0 comments on commit 73dec0f

Please sign in to comment.