From 98afe00c244c6d3f266ed26bca85cb272576e326 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Thu, 7 May 2020 21:01:27 +0200 Subject: [PATCH] Update README --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index c73c8fc..faeb327 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,7 @@ jobs: uses: actions/checkout@v2 - name: Import GPG key + id: import_gpg uses: crazy-max/ghaction-import-gpg@v1 with: git_user_signingkey: true @@ -55,6 +56,12 @@ jobs: env: 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 "email: ${{ steps.import_gpg.outputs.email }}" - name: Sign commit and push changes run: |