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 d6942cc commit 75f2f24Copy full SHA for 75f2f24
.github/workflows/release.yml
@@ -33,7 +33,7 @@ jobs:
33
uses: actions/setup-java@v4
34
with:
35
distribution: temurin
36
- java-version: '17'
+ java-version: '21'
37
cache: sbt
38
39
- name: Cache Ivy and Coursier
@@ -48,7 +48,7 @@ jobs:
48
${{ runner.os }}-sbt-
49
50
- name: Import GPG private key
51
- if: secrets.GPG_PRIVATE_KEY != ''
+ if: ${{ secrets.GPG_SECRET != '' }}
52
shell: bash
53
run: |
54
mkdir -p ~/.gnupg
@@ -57,7 +57,7 @@ jobs:
57
echo "use-agent" >> ~/.gnupg/gpg.conf
58
printf "%s" "${GPG_PRIVATE_KEY}" | gpg --batch --import
59
env:
60
- GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
+ GPG_SECRET: ${{ secrets.GPG_SECRET }}
61
62
- name: Show GPG keys (debug)
63
if: always()
0 commit comments