From c3d5e8d8b15421d6794df6a4e2c2a71693742d80 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Sun, 31 Oct 2021 15:47:56 +0100 Subject: [PATCH] fix: setup-java name correction --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f1509c13..c98130b7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,10 +11,13 @@ jobs: - uses: actions/checkout@v2.3.4 with: fetch-depth: 0 - - uses: actions/java@v2 + + - name: Set up JVM + uses: actions/setup-java@v2 with: distribution: 'temurin' java-version: 17 + - run: sbt ci-release env: PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}