Skip to content

Commit

Permalink
try to fix GPG error #2
Browse files Browse the repository at this point in the history
  • Loading branch information
slu-it committed Apr 1, 2022
1 parent 0c94a66 commit 6aa1ca3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ jobs:
- run:
name: Import GPG Key
command: |
export GPG_TTY=$(tty)
echo $GPG_KEY_BASE64 | base64 --decode | gpg --batch --import
- run:
name: Set Project Version
Expand Down
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<gpg.keyname>WebTester</gpg.keyname>

<skipUnitTests>false</skipUnitTests>
<skipIntegrationTests>false</skipIntegrationTests>

Expand Down Expand Up @@ -511,12 +509,14 @@
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>${gpg.keyname}</keyname>
<passphrase>${gpg.passphrase}</passphrase>
</configuration>
</execution>
</executions>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin>
<!-- maven central release plugin -->
<plugin>
Expand Down

0 comments on commit 6aa1ca3

Please sign in to comment.