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 7d3ccf7 commit 1bd1074Copy full SHA for 1bd1074
.github/dependabot.yml
@@ -5,6 +5,8 @@ updates:
5
schedule:
6
interval: daily
7
target-branch: main
8
+ ignore:
9
+ - dependency-name: "org.apache.maven.plugins:maven-gpg-plugin"
10
11
- package-ecosystem: "github-actions"
12
directory: "/"
.github/workflows/release.yml
@@ -46,7 +46,10 @@ jobs:
46
PGP_KEY_PASSWORD: ${{ secrets.PGP_KEY_PASSWORD }}
47
48
- name: Deploy Release
49
- run: mvn -B -ff -ntp deploy -DskipTests
+ run: |
50
+ export GPG_TTY=$(tty)
51
+ mvn -B -ff -ntp deploy -DskipTests
52
+ shell: bash
53
env:
54
MAVEN_USERNAME: ${{ secrets.OSSRH_USER }}
55
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
0 commit comments