feat: Add ci-cd gpg check

This commit is contained in:
Myzel394 2024-03-16 19:24:26 +01:00
parent 1d2563a154
commit 3491dfed79
No known key found for this signature in database
GPG Key ID: DEC4AAB876F73185

19
.github/workflows/check-gpg.yaml vendored Normal file
View File

@ -0,0 +1,19 @@
name: Verify GPG signature
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- name: Install gpg
run: sudo apt-get install gnupg
- name: Import key
run: gpg --import key.pub
- name: Check signature
run: gpg --verify README.md