File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -17,32 +17,32 @@ jobs:
1717 uses : subosito/flutter-action@v2
1818 with :
1919 channel : stable
20-
21- - run : pwd
22-
23- - run : ls
2420
2521 - name : Init flutter env
2622 run : |
2723 cd namepicker
2824 flutter pub get
2925
3026 - name : Build windows app
31- run : flutter build windows
27+ run : |
28+ cd namepicker
29+ flutter build windows
3230
3331 - name : Upload windows artifact
3432 uses : actions/upload-artifact@v4
3533 with :
3634 name : NamePicker-action-windows
3735 path : |
38- build\windows\x64\runner\Release
36+ namepicker\ build\windows\x64\runner\Release
3937
4038 - name : Build apk
41- run : flutter build apk --release
39+ run : |
40+ cd namepicker
41+ flutter build apk --release
4242
4343 - name : Upload apk artifacts
4444 uses : actions/upload-artifact@v4
4545 with :
4646 name : NamePicker-action-windows
4747 path : |
48- build\app\outputs\apk\release\*.apk
48+ namepicker\ build\app\outputs\apk\release\*.apk
You can’t perform that action at this time.
0 commit comments