Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
Add APK build
Browse files Browse the repository at this point in the history
  • Loading branch information
ilovelinux committed Sep 19, 2023
1 parent 909993a commit 2e64315
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/prod_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
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

0 comments on commit 2e64315

Please sign in to comment.