Skip to content

Commit 031c0d2

Browse files
committed
fix: gpg signing failed
1 parent b23c9ea commit 031c0d2

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
types: [published]
66

77
jobs:
8-
deploy_snapshot:
8+
release_deployment:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:

.github/workflows/snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- '.github/ISSUE_TEMPLATE/**'
1010

1111
jobs:
12-
deploy_snapshot:
12+
snapshot_deployment:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:

pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -438,6 +438,13 @@
438438
<goals>
439439
<goal>sign</goal>
440440
</goals>
441+
<configuration>
442+
<gpgArguments>
443+
<arg>--batch</arg>
444+
<arg>--pinentry-mode</arg>
445+
<arg>loopback</arg>
446+
</gpgArguments>
447+
</configuration>
441448
</execution>
442449
</executions>
443450
</plugin>

0 commit comments

Comments
 (0)