mirror of
https://github.com/crazy-max/ghaction-import-gpg.git
synced 2024-11-08 22:43:33 -05:00
Update README
This commit is contained in:
parent
0325aac373
commit
fdb2a1fedd
1 changed files with 3 additions and 6 deletions
|
@ -30,6 +30,7 @@ ___
|
||||||
|
|
||||||
* Works on Linux, macOS and Windows [virtual environments](https://help.github.com/en/articles/virtual-environments-for-github-actions#supported-virtual-environments-and-hardware-resources)
|
* Works on Linux, macOS and Windows [virtual environments](https://help.github.com/en/articles/virtual-environments-for-github-actions#supported-virtual-environments-and-hardware-resources)
|
||||||
* Allow to seed the internal cache of `gpg-agent` with provided passphrase
|
* Allow to seed the internal cache of `gpg-agent` with provided passphrase
|
||||||
|
* Signing-only subkeys support
|
||||||
* Purge imported GPG key, cache information and kill agent from runner
|
* Purge imported GPG key, cache information and kill agent from runner
|
||||||
* (Git) Enable signing for Git commits, tags and pushes
|
* (Git) Enable signing for Git commits, tags and pushes
|
||||||
* (Git) Configure and check committer info against GPG key
|
* (Git) Configure and check committer info against GPG key
|
||||||
|
@ -82,12 +83,8 @@ jobs:
|
||||||
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
||||||
passphrase: ${{ secrets.PASSPHRASE }}
|
passphrase: ${{ secrets.PASSPHRASE }}
|
||||||
-
|
-
|
||||||
name: GPG user IDs
|
name: List keys
|
||||||
run: |
|
run: gpg -K
|
||||||
echo "fingerprint: ${{ steps.import_gpg.outputs.fingerprint }}"
|
|
||||||
echo "keyid: ${{ steps.import_gpg.outputs.keyid }}"
|
|
||||||
echo "name: ${{ steps.import_gpg.outputs.name }}"
|
|
||||||
echo "email: ${{ steps.import_gpg.outputs.email }}"
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Sign commits
|
### Sign commits
|
||||||
|
|
Loading…
Reference in a new issue