Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.

Commit 6aa1ca3

Browse files
committed
try to fix GPG error #2
1 parent 0c94a66 commit 6aa1ca3

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.circleci/config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ jobs:
111111
- run:
112112
name: Import GPG Key
113113
command: |
114-
export GPG_TTY=$(tty)
115114
echo $GPG_KEY_BASE64 | base64 --decode | gpg --batch --import
116115
- run:
117116
name: Set Project Version

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@
5252
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5353
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
5454

55-
<gpg.keyname>WebTester</gpg.keyname>
56-
5755
<skipUnitTests>false</skipUnitTests>
5856
<skipIntegrationTests>false</skipIntegrationTests>
5957

@@ -511,12 +509,14 @@
511509
<goals>
512510
<goal>sign</goal>
513511
</goals>
514-
<configuration>
515-
<keyname>${gpg.keyname}</keyname>
516-
<passphrase>${gpg.passphrase}</passphrase>
517-
</configuration>
518512
</execution>
519513
</executions>
514+
<configuration>
515+
<gpgArguments>
516+
<arg>--pinentry-mode</arg>
517+
<arg>loopback</arg>
518+
</gpgArguments>
519+
</configuration>
520520
</plugin>
521521
<!-- maven central release plugin -->
522522
<plugin>

0 commit comments

Comments
 (0)