diff options
author | Arne Schwabe <arne@rfc2549.org> | 2023-04-17 15:30:41 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2023-04-17 15:42:52 +0200 |
commit | 540ae17adbaaef1dda55d4f52003c033c67721cc (patch) | |
tree | 361f8e8589ecf336793a3b64b863c6138a98edb3 | |
parent | bcd3aec70748c78908ca4aa3c0d8426fdbd2cd0f (diff) |
Fix github builds
-rw-r--r-- | .github/workflows/build.yaml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 449907eb..ccc5e8a9 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -11,6 +11,11 @@ jobs: name: "Release ${{ matrix.target }}" runs-on: ubuntu-latest steps: + - name: set up JDK 17 + uses: actions/setup-java@v3 + with: + distribution: 'zulu' + java-version: 17 - name: Use debug signing run: mkdir -p ~/.gradle && echo -e "icsopenvpnDebugSign=true\norg.gradle.jvmargs=-Xmx2048M" > ~/.gradle/gradle.properties - name: Checkout the code |