From 59ede86b4679f426534b7eeeff41eb2b5c28f4ac Mon Sep 17 00:00:00 2001 From: Avior Date: Tue, 16 May 2023 11:16:02 +0200 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e410aa7..6e815f9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,13 +26,16 @@ jobs: runs-on: ubuntu-latest steps: - - uses: https://github.com/actions/checkout@v3 + - uses: actions/checkout@v3 - name: set up JDK 11 uses: https://github.com/actions/setup-java@v3 with: java-version: '11' distribution: 'adopt' cache: gradle + + - name: Setup Android SDK + uses: https://github.com/android-actions/setup-android@v2 - name: Prepare project run: chmod +x .github/scripts/gradlew_recursive.sh - name: Build project @@ -41,7 +44,7 @@ jobs: run: zip -r assemble.zip . -i '**/build/*.apk' '**/build/*.aab' '**/build/*.aar' '**/build/*.so' - name: Upload artifacts continue-on-error: true - uses: https://github.com/actions/upload-artifact@v3 + uses: upload-artifact@v3 with: name: assemble path: assemble.zip