We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14c0653 commit 510f13fCopy full SHA for 510f13f
.github/workflows/pipeline.yml
@@ -75,6 +75,11 @@ jobs:
75
server-id: maven
76
server-username: ${{ secrets.SONATYPE_USERNAME }}
77
server-password: ${{ secrets.SONATYPE_PASSWORD }}
78
+ - name: Set up GPG for CI
79
+ run: |
80
+ echo "use-agent" >> ~/.gnupg/gpg.conf
81
+ echo "pinentry-mode loopback" >> ~/.gnupg/gpg.conf
82
+ echo "allow-loopback-pinentry" >> ~/.gnupg/gpg-agent.conf
83
- name: Import GPG key using gpg2 🔐
84
run: |
85
echo "${{ secrets.GPG_SECRET_KEY }}" | base64 --decode | gpg2 --batch --yes --import
0 commit comments