From d25e723d07e783ecc1589a4b96fb3bfd89a2e163 Mon Sep 17 00:00:00 2001 From: austinried <4966622+austinried@users.noreply.github.com> Date: Mon, 23 Aug 2021 22:36:18 +0900 Subject: [PATCH] test gradle build/artifact --- .github/workflows/build.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e8be6c3..df9f73e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,6 +11,9 @@ jobs: cache: 'yarn' - run: | yarn - - name: List files in the repository - run: | - ls ${{ github.workspace }} + - run: | + ./android/gradlew -p android assembleRelease -PsignReleaseWithDebug=true + - uses: actions/upload-artifact@v2 + with: + name: app-release.apk + path: android/app/build/outputs/apk/release/app-release.apk