File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed
Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -20,17 +20,23 @@ jobs:
2020 - name : Setup Flutter
2121 uses : subosito/flutter-action@v2
2222 with :
23- channel : stable
24- cache : true
23+ channel : stable
24+ cache : true
2525
2626 - name : Install dependencies
2727 run : flutter pub get
2828
2929 - name : Analyze code
3030 run : flutter analyze --no-fatal-infos
3131
32- - name : Run tests
33- run : flutter test
32+
33+ - name : Recreate Android folder
34+ run : |
35+ rm -rf android
36+ flutter create --platforms=android .
37+
38+ # - name: Run tests
39+ # run: flutter test
3440
3541 - name : Build release APK
3642 run : flutter build apk --release
3945 uses : actions/upload-artifact@v4
4046 with :
4147 name : apkf-release
42- path : build/app/outputs/flutter-apk/app-release.apk
48+ path : build/app/outputs/flutter-apk/app-release.apk
You can’t perform that action at this time.
0 commit comments