We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 073d44d commit 8671ad9Copy full SHA for 8671ad9
1 file changed
.github/workflows/release.yml
@@ -32,11 +32,18 @@ jobs:
32
gpg-private-key: ${{ secrets.GPG_KEY }}
33
gpg-passphrase: MAVEN_GPG_PASSPHRASE
34
35
+ - name: Configure GPG
36
+ run: |
37
+ echo "allow-loopback-pinentry" >> ~/.gnupg/gpg-agent.conf
38
+ gpgconf --reload gpg-agent
39
+
40
- name: Publish to Maven Central
41
run: |
42
./mvnw clean deploy \
43
-P production-releases \
44
-D maven.test.skip=true \
45
+ -D gpg.passphrase="${MAVEN_GPG_PASSPHRASE}" \
46
+ -D gpg.args="--pinentry-mode=loopback" \
47
-pl !bolt-kotlin-examples \
48
-pl !bolt-quarkus-examples \
49
--batch-mode \
0 commit comments