Skip to content

Commit 4117f8e

Browse files
author
JeanMarc van Leerdam
committed
Refactor release action setup to install GPG key
1 parent ab4f47e commit 4117f8e

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,14 @@ jobs:
99
- uses: actions/checkout@v4
1010
with:
1111
fetch-depth: 0
12-
- uses: olafurpg/setup-scala@v14
12+
- name: Set up JDK
13+
uses: actions/setup-java@v4
1314
with:
14-
java-version: zulu@1.17
15+
distribution: temurin
16+
java-version: 17
17+
gpg-private-key: ${{ secrets.PGP_SECRET }}
18+
gpg-passphrase: PGP_PASSPHRASE
19+
- uses: sbt/setup-sbt@v1
1520
- run: sbt ci-release
1621
env:
1722
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}

0 commit comments

Comments
 (0)