From d6f9255398726402648ee1a3abe7f318ae83b077 Mon Sep 17 00:00:00 2001 From: realaravinth Date: Sun, 14 Aug 2022 17:47:15 +0530 Subject: [PATCH] fix: batch import release gpg key --- .github/workflows/linux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index a780142..30765ad 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -77,7 +77,7 @@ jobs: - name: configure GPG key if: (github.ref == 'refs/heads/master' || github.event_name == 'push') && github.repository == 'realaravinth/dumbserve' - run: echo -n "$RELEASE_BOT_GPG_SIGNING_KEY" | gpg --import + run: echo -n "$RELEASE_BOT_GPG_SIGNING_KEY" | gpg --batch --import env: RELEASE_BOT_GPG_SIGNING_KEY: ${{ secrets.RELEASE_BOT_GPG_SIGNING_KEY }}