Skip to content

Commit c38422b

Browse files
committed
fix for a gpg issue?
1 parent 3bcfadb commit c38422b

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/release.yml

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ jobs:
1717
env:
1818
RELEASE_VERSION: ${{ github.event.release.tag_name }}
1919
# see: https://github.com/keybase/keybase-issues/issues/2798
20-
- name: gpg fix
21-
run: export GPG_TTY=$(tty)
2220
- name: Release Maven package
2321
uses: samuelmeuli/action-maven-publish@v1
2422
with:

pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,12 @@
179179
<goals>
180180
<goal>sign</goal>
181181
</goals>
182+
<configuration>
183+
<gpgArguments>
184+
<arg>--pinentry-mode</arg>
185+
<arg>loopback</arg>
186+
</gpgArguments>
187+
</configuration>
182188
</execution>
183189
</executions>
184190
</plugin>

spring-boot-starter/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
<plugin>
3232
<groupId>org.springframework.boot</groupId>
3333
<artifactId>spring-boot-maven-plugin</artifactId>
34+
<version>2.2.6.RELEASE</version>
3435
</plugin>
3536
</plugins>
3637
</build>

0 commit comments

Comments
 (0)