From bcf09fe2b80a11a274c4bc8cc468cd9047c68065 Mon Sep 17 00:00:00 2001 From: Manuel Vogel Date: Wed, 21 Apr 2021 14:01:41 +0200 Subject: [PATCH] fix(compile): remove gpg key from action to make it work in forks --- .github/workflows/compile.yaml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/compile.yaml b/.github/workflows/compile.yaml index eefd2f76..b5da37c7 100644 --- a/.github/workflows/compile.yaml +++ b/.github/workflows/compile.yaml @@ -22,17 +22,8 @@ jobs: - uses: actions/setup-go@v2 with: go-version: '1.16' - - name: Import GPG key - id: import_gpg - uses: paultyng/ghaction-import-gpg@v2.1.0 - env: - GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} - PASSPHRASE: ${{ secrets.PASSPHRASE }} - name: Run GoReleaser uses: goreleaser/goreleaser-action@v2 with: version: latest args: release --rm-dist --skip-publish --snapshot - env: - GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }} -