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 db24844 commit e19b2bbCopy full SHA for e19b2bb
.github/workflows/build_develop.yml
@@ -18,11 +18,10 @@ jobs:
18
cache: 'maven'
19
- name: Set up GPG
20
run: |
21
- echo "$GPG_PRIVATE_KEY" > private.asc
22
- gpg --import --batch private.asc
+ echo "$GPG_PRIVATE_KEY" | gpg --batch --import
23
env:
24
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
25
- name: Build with Maven
26
run: mvn -B -Psign -Dgpg.passphrase=${GPG_PASSPHRASE} -Dtest=org.purejava.integrations.keychain.KeePassXCAccessTest install --file pom.xml
27
28
- GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
+ GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
0 commit comments