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 ba852d2 commit 161810fCopy full SHA for 161810f
pom.xml
@@ -413,6 +413,14 @@
413
<groupId>org.apache.maven.plugins</groupId>
414
<artifactId>maven-gpg-plugin</artifactId>
415
<version>${maven-gpg-plugin.version}</version>
416
+ <configuration>
417
+ <!-- refer to https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#extra-setup-for-pomxml,
418
+ required for Github Action runner to prevent gpg from using pinentry programs -->
419
+ <gpgArguments>
420
+ <arg>--pinentry-mode</arg>
421
+ <arg>loopback</arg>
422
+ </gpgArguments>
423
+ </configuration>
424
<executions>
425
<execution>
426
<id>sign-artifacts</id>
0 commit comments