From 4756c075b667fdb3d781c3588c53a9d4201c7aa4 Mon Sep 17 00:00:00 2001 From: Alex Tran <alex.tran1502@gmail.com> Date: Tue, 8 Feb 2022 11:36:43 -0600 Subject: [PATCH] Added work flow to build APK on push to master --- .github/workflows/build_apk.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/build_apk.yml diff --git a/.github/workflows/build_apk.yml b/.github/workflows/build_apk.yml new file mode 100644 index 0000000000..1baf502e62 --- /dev/null +++ b/.github/workflows/build_apk.yml @@ -0,0 +1,29 @@ +name: Build APK Android + +on: + workflow_dispatch: + push: + branches: [main] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + # Build + - uses: subosito/flutter-action@v2 + with: + channel: "stable" + cache: true + cache-key: flutter2.10 # optional, change this to force refresh cache + - run: flutter --version + - run: flutter pub get + - run: flutter build apk + - run: flutter build appbundle + + # Upload Artifact + - uses: actions/upload-artifact@v2 + with: + name: release-apk + path: build/app/outputs/apk/release/app-release.apk