From fdb2a1fedd0357425540554355d95f78897ddf80 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Sat, 12 Feb 2022 19:06:41 +0100 Subject: [PATCH] Update README --- README.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3c4b0ba..3edc8be 100644 --- a/README.md +++ b/README.md @@ -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) * 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 * (Git) Enable signing for Git commits, tags and pushes * (Git) Configure and check committer info against GPG key @@ -82,12 +83,8 @@ jobs: gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} passphrase: ${{ secrets.PASSPHRASE }} - - name: GPG user IDs - run: | - 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 }}" + name: List keys + run: gpg -K ``` ### Sign commits