Skip to content

Commit

Permalink
7411: GPG signing in Github action fails
Browse files Browse the repository at this point in the history
Reviewed-by: hirt
  • Loading branch information
Patrick Reinhart authored and thegreystone committed Oct 4, 2021
1 parent 01fb898 commit 4d413ee
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions agent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,13 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<configuration>
<!-- Prevent gpg from using pinentry programs -->
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
<executions>
<execution>
<id>gpg-sign</id>
Expand Down
7 changes: 7 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,13 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven.gpg.version}</version>
<configuration>
<!-- Prevent gpg from using pinentry programs -->
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
<executions>
<execution>
<id>gpg-sign</id>
Expand Down

0 comments on commit 4d413ee

Please sign in to comment.