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 1f0a5c2 commit 39bdfe0Copy full SHA for 39bdfe0
1 file changed
.github/workflows/release.yml
@@ -20,16 +20,18 @@ jobs:
20
java-version: '17'
21
22
- name: Import GPG key
23
+ env:
24
+ GPG_KEY_DATA: ${{ secrets.GPG_PRIVATE_KEY }}
25
run: |
- echo "${{ secrets.GPG_PRIVATE_KEY }}" > private.key
26
+ echo "$GPG_KEY_DATA" > private.key
27
gpg --batch --pinentry-mode loopback --import private.key
28
rm -f private.key
29
30
- name: Remove default Maven settings
31
run: rm -f ~/.m2/settings.xml
32
33
- name: Setup Maven settings
- uses: 1arp/create-a-file-action@0.4.5
34
+ uses: 1arp/create-a-file-action@6b7fed8f0bcec18f7685ff950011088e7ef5e378 #v0.4.5
35
with:
36
path: /home/runner/.m2
37
isAbsolutePath: true
0 commit comments