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 e517f1d commit e556115Copy full SHA for e556115
.github/workflows/maven.yml
@@ -37,7 +37,7 @@ jobs:
37
38
- name: Publish to Apache Maven Central
39
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
40
- run: mvn -DskipTests --batch-mode deploy
+ run: mvn -DskipTests --batch-mode deploy -Dgpg.passphrase=${{ secrets.MAVEN_GPG_PASSPHRASE }}
41
env:
42
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
43
OSSRH_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
pom.xml
@@ -144,13 +144,6 @@
144
</goals>
145
</execution>
146
</executions>
147
- <configuration>
148
- <!-- Prevent gpg from using pinentry programs -->
149
- <gpgArguments>
150
- <arg>--pinentry-mode</arg>
151
- <arg>loopback</arg>
152
- </gpgArguments>
153
- </configuration>
154
</plugin>
155
156
</plugins>
0 commit comments