From 2d6383ec184417fc7d6f98ea7a16aaffa3be1bf3 Mon Sep 17 00:00:00 2001 From: Ted Spence Date: Thu, 3 Oct 2024 12:17:14 -0700 Subject: [PATCH] Clean up references to GPG key (#24) Clean up GPG key references --- .github/workflows/publish.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 45df27a..f9f07fd 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -28,10 +28,10 @@ jobs: distribution: 'adopt' java-version: 17 server-id: central - server-username: MAVEN_USERNAME - server-password: MAVEN_CENTRAL_TOKEN - gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} - gpg-passphrase: MAVEN_GPG_PASSPHRASE + server-username: ${{ secrets.MAVEN_USERNAME }} + server-password: ${{ secrets.MAVEN_CENTRAL_TOKEN }} + gpg-private-key: ${{ secrets.GPG_SIGNING_KEY }} + gpg-passphrase: ${{ secrets.MAVEN_GPG_PASSPHRASE }} - name: Verify with Maven if: github.event_name == 'pull_request'