From d98bcd958624a64af11f22b4abd98f6cec66f79b Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Sun, 6 Sep 2020 22:15:12 +0200 Subject: [PATCH] Import GPG action v3 --- README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 499f853..7cb4a50 100644 --- a/README.md +++ b/README.md @@ -78,13 +78,12 @@ You can use the [Import GPG](https://github.com/crazy-max/ghaction-import-gpg) G ```yaml - name: Import GPG key - uses: crazy-max/ghaction-import-gpg@v2 + uses: crazy-max/ghaction-import-gpg@v3 with: - git_user_signingkey: true - git_commit_gpgsign: true - env: - GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} - PASSPHRASE: ${{ secrets.PASSPHRASE }} + gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} + passphrase: ${{ secrets.PASSPHRASE }} + git-user-signingkey: true + git-commit-gpgsign: true - name: Deploy to GitHub Pages if: success()