From f84af5f7dfb546730cb7544082cffdb7f7d8b0d7 Mon Sep 17 00:00:00 2001 From: Kshitij B Date: Sun, 28 Apr 2024 04:57:16 +0000 Subject: [PATCH] create android build workflow --- .github/workflows/android.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/android.yml diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml new file mode 100644 index 0000000..fb9b163 --- /dev/null +++ b/.github/workflows/android.yml @@ -0,0 +1,23 @@ +name: Dart + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: checkout all the submodules + uses: actions/checkout@v4 + with: + submodules: true + + - name: Install dependencies + run: submodules/flutter/bin/flutter pub get + + - name: Build + run: submodules/flutter/bin/flutter build apk --split-per-abi