Skip to content

Commit 07ea044

Browse files
committed
Fix PGP environment variable name
1 parent fe193a6 commit 07ea044

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test_and_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ jobs:
6969
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
7070
SONA_USER: ${{ secrets.SONATYPE_USERNAME }}
7171
SONA_PASS: ${{ secrets.SONATYPE_PASSWORD }}
72-
GPG_PRIVATE: ${{ secrets.GPG_PRIVATE }}
72+
PGP_SECRET: ${{ secrets.PGP_SECRET }}
7373
PGP_PASS: ${{ secrets.PGP_PASS }}
7474
CI: github
7575
run: |
7676
git fetch --prune --unshallow --tags &&
7777
export GPG_TTY=$(tty) &&
78-
echo $GPG_PRIVATE | base64 -d | gpg --passphrase=$PGP_PASS --yes --batch --pinentry-mode loopback --import &&
78+
echo $PGP_SECRET | base64 -d | gpg --passphrase=$PGP_PASS --yes --batch --pinentry-mode loopback --import &&
7979
export PATH=`pwd`/.github/bin:$PATH &&
8080
sbt + test ciReleaseTagNextVersion ciReleaseSonatype
8181

0 commit comments

Comments
 (0)