We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4a5a09a + 8cf8e6d commit 27d0705Copy full SHA for 27d0705
1 file changed
.github/workflows/test_and_release.yml
@@ -69,13 +69,13 @@ jobs:
69
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
70
SONA_USER: ${{ secrets.SONATYPE_USERNAME }}
71
SONA_PASS: ${{ secrets.SONATYPE_PASSWORD }}
72
- GPG_PRIVATE: ${{ secrets.GPG_PRIVATE }}
+ PGP_SECRET: ${{ secrets.PGP_SECRET }}
73
PGP_PASS: ${{ secrets.PGP_PASS }}
74
CI: github
75
run: |
76
git fetch --prune --unshallow --tags &&
77
export GPG_TTY=$(tty) &&
78
- echo $GPG_PRIVATE | base64 -d | gpg --passphrase=$PGP_PASS --yes --batch --pinentry-mode loopback --import &&
+ echo $PGP_SECRET | base64 -d | gpg --passphrase=$PGP_PASS --yes --batch --pinentry-mode loopback --import &&
79
export PATH=`pwd`/.github/bin:$PATH &&
80
sbt + test ciReleaseTagNextVersion ciReleaseSonatype
81
0 commit comments