Skip to content

Commit

Permalink
Add apk releases
Browse files Browse the repository at this point in the history
  • Loading branch information
AhsanSarwar45 committed Dec 11, 2023
1 parent 4cdf676 commit e615f18
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/android-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,15 @@ jobs:
run: flutter pub get

- name: Build APPBUNDLE
run: flutter build appbundle --release
run: flutter build appbundle

- name: Build APK
run: flutter build apk --split-per-abi

- name: Create Github Release
uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/bundle/release/*.aab"
artifacts: "build/app/outputs/bundle/release/*.aab,build/app/outputs/bundle/release/*.apk"
# tag: $GIT_TAG_NAME
# token: ${{ secrets.PERSONAL_RELEASE_TOKEN }}

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
with:
flutter-version: '3.16.3' # or, you can use 1.22
channel: 'stable'
cache: true
- run: flutter test --coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3

0 comments on commit e615f18

Please sign in to comment.