From 0c49677773bf1c62cc2eab2ad82531930bb9d55e Mon Sep 17 00:00:00 2001 From: Lennon McLean Date: Sun, 22 Aug 2021 08:36:29 -0400 Subject: [PATCH] Update buildnw.yml --- .github/workflows/buildnw.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/buildnw.yml b/.github/workflows/buildnw.yml index 62924ff..944b259 100644 --- a/.github/workflows/buildnw.yml +++ b/.github/workflows/buildnw.yml @@ -4,6 +4,21 @@ on: [push, workflow_dispatch] jobs: + buildandroid: + name: Build Android app + runs-on: ubuntu-latest + steps: + - name: Get repository code + uses: actions/checkout@v2 + with: + ref: android + + - name: Build Android app + run: ./gradlew build + + - name: List files + run: OS + buildios: name: Build iOS app runs-on: macos-latest