Skip to content

Commit

Permalink
build: build separated apk file
Browse files Browse the repository at this point in the history
  • Loading branch information
GioPan04 committed Nov 21, 2023
1 parent 75fdf97 commit 3f2f3c8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
release:
types: [published]

permissions:
contents: write

jobs:
release:
name: 'Build and publish to GitHub'
Expand All @@ -29,8 +32,8 @@ jobs:
- name: 'Get dependencies'
run: flutter pub get
- name: 'Build'
run: flutter build apk
run: flutter build apk --split-per-abi
- name: Release
uses: softprops/action-gh-release@v1
with:
files: build/app/outputs/apk/release/app-release.apk
files: build/app/outputs/apk/release/app-*-release.apk

0 comments on commit 3f2f3c8

Please sign in to comment.