From 2e64315588450df248330e57bac0001de5b95570 Mon Sep 17 00:00:00 2001 From: ilovelinux Date: Tue, 19 Sep 2023 12:38:25 +0200 Subject: [PATCH] Add APK build --- .github/workflows/prod_android.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/prod_android.yml b/.github/workflows/prod_android.yml index b5adbfb..a205e6d 100644 --- a/.github/workflows/prod_android.yml +++ b/.github/workflows/prod_android.yml @@ -55,6 +55,9 @@ jobs: - name: Build App Bundle run: flutter build appbundle --release --flavor prod + - name: Build App APK + run: flutter build apk --release --flavor prod + - name: Upload Android Bundle uses: actions/upload-artifact@v3 with: @@ -67,4 +70,11 @@ jobs: with: name: android-debug-symbols path: build/app/intermediates/merged_native_libs/prodRelease/out/lib/* - if-no-files-found: error \ No newline at end of file + if-no-files-found: error + + - name: Upload Android APK + uses: actions/upload-artifact@v3 + with: + name: android-bundle + path: build/app/outputs/flutter-apk/app-prod-release.apk + if-no-files-found: error