From 99eb2fafa0916936c853942517474874affb675c Mon Sep 17 00:00:00 2001 From: deniscerri <64997243+deniscerri@users.noreply.github.com> Date: Sun, 19 Mar 2023 21:01:11 +0100 Subject: [PATCH] Update android.yml --- .github/workflows/android.yml | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index fb9aeb87..a8908df1 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -12,17 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - name: set up JDK 11 - uses: actions/setup-java@v3 - with: - java-version: '11' - distribution: 'temurin' - cache: gradle - - uses: gradle/gradle-build-action@v2 - with: - gradle-version: 7.4.2 - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - name: Build with Gradle - run: ./gradlew --stacktrace build + - name: Checkout the code + uses: actions/checkout@v3 + - name: Build the app + run: ./gradlew build