From de35989d2913f26b603a96193c97285a64d8984a Mon Sep 17 00:00:00 2001 From: Justin Abrahms Date: Thu, 23 Jun 2022 22:17:33 -0500 Subject: [PATCH] Add gpg key --- .github/workflows/pullrequest.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index 625a130e..10b98bad 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -18,6 +18,11 @@ jobs: java-version: '8' distribution: 'temurin' cache: maven + - name: Configure GPG Key + run: | + echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --import + env: + GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }} - name: Build with Maven run: mvn --batch-mode --update-snapshots verify