From c18ed132289e611e965d93bfdb5bcdb676113c23 Mon Sep 17 00:00:00 2001 From: Ale Vilar Date: Wed, 4 Sep 2024 18:05:12 -0300 Subject: [PATCH] chore: Update Android build workflow to use Gradle wrapper --- .github/workflows/android.build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android.build.yml b/.github/workflows/android.build.yml index 27331513e8..b2bddf2f72 100644 --- a/.github/workflows/android.build.yml +++ b/.github/workflows/android.build.yml @@ -26,7 +26,8 @@ jobs: path: .buildozer_global key: buildozer-global-${{ hashFiles('buildozer.spec') }} - - uses: actions/cache@v4 + - name: Cache Buildozer + uses: actions/cache@v4 with: path: .buildozer key: ${{ runner.os }}-${{ steps.get-date.outputs.date }}-${{ hashFiles('buildozer.spec') }} @@ -100,13 +101,14 @@ jobs: pip install kivy==2.3.0 pip install cython==3.0.11 pip install buildozer==1.5.0 + pip install -r requirements.android.txt # Build with Buildozer - name: Build with Buildozer id: buildozer run: | - yes | buildozer android debug + yes | buildozer android debug -v # Upload artifacts - name: Upload APK artifact