Skip to content

Commit

Permalink
added workflow to build flutter app
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkisDev authored Jul 20, 2023
1 parent 7e296fb commit 804cfdd
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/flutter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Flutter Build

on:
push:
branches:
- main
- next

jobs:
build-android:
name: Android
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: "12.x"

- name: Setup Flutter
uses: subosito/flutter-action@master
with:
channel: stable

- name: Build Flutter app for Android
run: flutter build apk

0 comments on commit 804cfdd

Please sign in to comment.