From 935fcc8d262cdcb308bc0c05094867c161c6f9a9 Mon Sep 17 00:00:00 2001 From: Cloudburst <18114966+C10udburst@users.noreply.github.com> Date: Mon, 16 Aug 2021 11:51:31 +0200 Subject: [PATCH] create build workflow --- .github/workflows/main.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..59736b0f --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,25 @@ +# This workflow will build a Java project with Gradle +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle + +name: Artifact Build + +on: [push, pull_request] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Run Gradle command + uses: Raul6469/android-gradle-action@2.0.0 + with: + # The gradle command you wish to run (required) + # Here, `./gradlew test` will be run + script: assembleDebug + - name: Upload Artifact + uses: actions/upload-artifact@v2 + with: + name: pull-request-build + path: "*/*/build/outputs/apk/*.apk"