Skip to content

Commit 1bd1074

Browse files
committed
gpg fix
1 parent 7d3ccf7 commit 1bd1074

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ updates:
55
schedule:
66
interval: daily
77
target-branch: main
8+
ignore:
9+
- dependency-name: "org.apache.maven.plugins:maven-gpg-plugin"
810

911
- package-ecosystem: "github-actions"
1012
directory: "/"

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ jobs:
4646
PGP_KEY_PASSWORD: ${{ secrets.PGP_KEY_PASSWORD }}
4747

4848
- name: Deploy Release
49-
run: mvn -B -ff -ntp deploy -DskipTests
49+
run: |
50+
export GPG_TTY=$(tty)
51+
mvn -B -ff -ntp deploy -DskipTests
52+
shell: bash
5053
env:
5154
MAVEN_USERNAME: ${{ secrets.OSSRH_USER }}
5255
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}

0 commit comments

Comments
 (0)