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.
2 parents 92736d7 + b5c9798 commit 7c3a1cdCopy full SHA for 7c3a1cd
.github/workflows/release.yaml
@@ -33,6 +33,11 @@ jobs:
33
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
34
- name: Setup Kustomize
35
uses: fluxcd/pkg/actions/kustomize@main
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; }
41
- name: Prepare
42
id: prep
43
run: |
0 commit comments