From 75227a1f91fe579cecfb6b67d5758673be05d11c Mon Sep 17 00:00:00 2001 From: Vilius Sutkus '89 Date: Sun, 16 Jun 2024 10:12:35 +0300 Subject: [PATCH] Setup JDK before setting up Android SDK --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bc3ff86..58b793c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -65,6 +65,12 @@ jobs: - name: checkout uses: actions/checkout@v4 + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + - name: Setup Android SDK uses: android-actions/setup-android@v3 with: