mirror of
https://github.com/Myzel394/contact-me.git
synced 2025-06-18 23:45:31 +02:00
20 lines
362 B
YAML
20 lines
362 B
YAML
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
|