From 0720e8f647767d19de9ee08c0e2fa9e4ba298c8a Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Thu, 15 May 2025 08:06:16 +0100 Subject: [PATCH] Now we need a signing key? --- .github/workflows/ci-pr.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index 02a542f..ab0a666 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -21,7 +21,11 @@ jobs: distribution: 'temurin' cache: maven - name: Build and test + env: + signing_key: ${{ secrets.GPG_PRIVATE_KEY }} run: | + echo "${signing_key}" > private.asc + gpg --import --batch --no-tty private.asc ./mvnw -B clean install - name: Capture Test Results if: failure()