From fa2a535019ae97e11e715be281e3979f6b1a685a Mon Sep 17 00:00:00 2001 From: Anton Keks Date: Thu, 26 Dec 2019 14:40:52 +0200 Subject: [PATCH] add Java for mac & win builds --- .github/workflows/main.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b65f8973..5c92493d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,6 +22,10 @@ jobs: steps: - uses: actions/checkout@v1 + - uses: actions/setup-java@v1 + with: + java-version: '8' + architecture: x64 - name: Build run: ./gradlew mac @@ -30,5 +34,9 @@ jobs: steps: - uses: actions/checkout@v1 + - uses: actions/setup-java@v1 + with: + java-version: '8' + architecture: x64 - name: Build run: ./gradlew win-installer