We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df9b2fe commit 2f9a458Copy full SHA for 2f9a458
.github/workflows/main.yml
@@ -20,7 +20,16 @@ jobs:
20
steps:
21
- name: Checkout code
22
uses: actions/checkout@v2
23
- - name: Build project # This would actually build your project, using zip for an example artifact
+ - name: Setup Java
24
+ uses: actions/setup-java@v2
25
+ with:
26
+ distribution: 'zulu'
27
+ java-version: '8'
28
+ - name: Setup Flutter
29
+ uses: subosito/flutter-action@v1
30
31
+ flutter-version: '2.5.3'
32
+ - name: Build project # This would actually build your project, using zip for an example artifact
33
run: |
34
flutter pub get
35
flutter build apk --split-per-abi
0 commit comments