Skip to content

Commit

Permalink
add build apk to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
smart7even committed Jan 6, 2024
1 parent 616b1d5 commit 6a5bdd2
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,14 @@ jobs:
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.16.5'
- run: flutter pub get
- run: flutter test
- name: Install dependencies
run: flutter pub get
- name: Run tests
run: flutter test
- name: Build APK
run: flutter build apk --release
- name: upload APK
uses: actions/upload-artifact@v2
with:
name: app-release.apk
path: build/app/outputs/flutter-apk/app-release.apk

0 comments on commit 6a5bdd2

Please sign in to comment.