Skip to content

Commit ff93ff5

Browse files
committed
ci:rnbtq
1 parent d548379 commit ff93ff5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)