We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 891574d commit fc16a4dCopy full SHA for fc16a4d
.github/workflows/release_to_maven.yml
@@ -27,10 +27,10 @@ jobs:
27
- name: Setup GPG key information
28
run: |
29
mkdir -p ~/.gnupg
30
- echo -n "$SIGNING_KEY_B64" | base64 --decode > /home/runner/.gnupg/secring.gpg
+ echo -n "GPG_SIGNING_KEY_B64" | base64 --decode > /home/runner/.gnupg/secring.gpg
31
cat /home/runner/.gnupg/secring.gpg
32
env:
33
- SIGNING_KEY_B64: ${{ secrets.$GPG_SIGNING_KEY_B64 }}
+ GPG_SIGNING_KEY_B64: ${{ secrets.GPG_PRIVATE_KEY_B64 }}
34
35
- name: Publish package
36
run: ./gradlew publishToSonatype closeSonatypeStagingRepository -Psigning.password="${SIGP}"
0 commit comments