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 1bd1074 commit 40dfd18Copy full SHA for 40dfd18
.github/workflows/release.yml
@@ -47,7 +47,7 @@ jobs:
47
48
- name: Deploy Release
49
run: |
50
- export GPG_TTY=$(tty)
+ export GPG_TTY=`tty`
51
mvn -B -ff -ntp deploy -DskipTests
52
shell: bash
53
env:
pom.xml
@@ -482,6 +482,13 @@
482
<goals>
483
<goal>sign</goal>
484
</goals>
485
+ <configuration>
486
+ <gpgArguments>
487
+ <arg>--batch</arg>
488
+ <arg>--pinentry-mode</arg>
489
+ <arg>loopback</arg>
490
+ </gpgArguments>
491
+ </configuration>
492
</execution>
493
</executions>
494
</plugin>
0 commit comments