We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
pom.xml
1 parent 7451840 commit 25ea0cfCopy full SHA for 25ea0cf
2 files changed
.github/workflows/ci.yml
@@ -20,4 +20,6 @@ jobs:
20
run: chmod +x mvnw
21
22
- name: Build
23
- run: ./mvnw -B clean verify
+ run: ./mvnw -B clean verify
24
+ env:
25
+ GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
pom.xml
@@ -87,6 +87,13 @@
87
<groupId>org.apache.maven.plugins</groupId>
88
<artifactId>maven-gpg-plugin</artifactId>
89
<version>3.1.0</version>
90
+ <configuration>
91
+ <passphrase>${env.GPG_PASSPHRASE}</passphrase>
92
+ <gpgArguments>
93
+ <arg>--pinentry-mode</arg>
94
+ <arg>loopback</arg>
95
+ </gpgArguments>
96
+ </configuration>
97
<executions>
98
<execution>
99
<id>sign-artifacts</id>
0 commit comments