From ce77eb8337c1fb772349ce22cad11d1a64058a03 Mon Sep 17 00:00:00 2001 From: "Dawid Wyrkowski (Dawqss)" Date: Mon, 16 Sep 2024 21:46:16 +0200 Subject: [PATCH] chore(): build.yml tweaks --- .github/workflows/build.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0874a79..774e07c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,7 +5,7 @@ on: - master jobs: build-android: - runs-on: ubuntu-latest + runs-on: macos-latest steps: - name: Checkout repository uses: actions/checkout@v3 @@ -16,15 +16,17 @@ jobs: - name: Install dependencies run: | npm install + npx pod-install # For iOS pods, useful to install native dependencies - name: Set up Java JDK uses: actions/setup-java@v3 with: - distribution: temurin + distribution: adopt java-version: 17 - name: Install Android SDK - uses: ReactiveCircus/android-emulator-runner@v2 + uses: reactivecircus/android-emulator-runner@v2 with: - api-level: 29 + api-level: 31 + arch: arm64-v8a script: ./gradlew build - name: Build Android app run: |