From ce65a0a477533050603e7fde18dd04e36649ea62 Mon Sep 17 00:00:00 2001 From: Danil Nikolaev Date: Wed, 4 Aug 2021 14:10:31 -0700 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 677cd915..f185d9d0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,12 +26,14 @@ jobs: uses: actions/setup-java@v1 with: java-version: 1.8 + + - name: Make gradlew executable + run: chmod +x ./gradlew + - name: Build with Gradle + run: ./gradlew build --info --stacktrace + - name: Build debug APK + run: ./gradlew assembleDebug - # Runs a single command using the runners shell - - name: Build the App with permissions - run: chmod +x "./gradlew build --info --stacktrace" - - # Runs a set of commands using the runners shell - name: Run a multi-line script run: | echo Add other actions to build,