Skip to content

Commit

Permalink
Update apk.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
BenHerbst authored Jan 12, 2024
1 parent 0054fb4 commit 8b834ed
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,18 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Builds - build Flutter APK and create github release
uses: Dank-del/flutter-build-and-publish-action@v1
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
channel: 'beta'
- run: flutter pub get
- run: flutter analyze .
- run: flutter build apk
- uses: actions/upload-artifact@v1
with:
name: release-apk
path: build/app/outputs/apk/release/app-release.apk

0 comments on commit 8b834ed

Please sign in to comment.