From 0124019fb309afba189f690ae4c9bfaa2e4cf3f5 Mon Sep 17 00:00:00 2001 From: nleiva Date: Thu, 28 Apr 2022 12:57:32 -0400 Subject: [PATCH] Fix omport GPG key in workflow --- .github/workflows/release.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e322bf3..bdf59bc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,10 +33,11 @@ jobs: name: Import GPG key id: import_gpg uses: crazy-max/ghaction-import-gpg@v4.4.0 - env: + with: # These secrets will need to be configured for the repository: - GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} - PASSPHRASE: ${{ secrets.PASSPHRASE }} + gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} + passphrase: ${{ secrets.PASSPHRASE }} + - name: Run GoReleaser uses: goreleaser/goreleaser-action@v2.9.1