Skip to content

Commit 2f9a458

Browse files
Update main.yml
Other testing
1 parent df9b2fe commit 2f9a458

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/main.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,16 @@ jobs:
2020
steps:
2121
- name: Checkout code
2222
uses: actions/checkout@v2
23-
- name: Build project # This would actually build your project, using zip for an example artifact
23+
- 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+
with:
31+
flutter-version: '2.5.3'
32+
- name: Build project # This would actually build your project, using zip for an example artifact
2433
run: |
2534
flutter pub get
2635
flutter build apk --split-per-abi

0 commit comments

Comments
 (0)