We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e296fb commit 804cfddCopy full SHA for 804cfdd
.github/workflows/flutter.yml
@@ -0,0 +1,28 @@
1
+name: Flutter Build
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - next
8
9
+jobs:
10
+ build-android:
11
+ name: Android
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v2
16
17
+ - name: Setup Java
18
+ uses: actions/setup-java@v1
19
+ with:
20
+ java-version: "12.x"
21
22
+ - name: Setup Flutter
23
+ uses: subosito/flutter-action@master
24
25
+ channel: stable
26
27
+ - name: Build Flutter app for Android
28
+ run: flutter build apk
0 commit comments