File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 84
84
uses : actions/upload-artifact@v4
85
85
with :
86
86
name : slave_firmware
87
- path : |
88
- wifi_copro_fw
87
+ path : slave_firmware
89
88
90
89
release_framework :
91
90
name : Release Framework
@@ -111,7 +110,8 @@ jobs:
111
110
run : |
112
111
FRAMEWORK_ZIP=$(ls dist/framework*.zip | head -n 1)
113
112
unzip -q "$FRAMEWORK_ZIP" -d dist/unpacked
114
- cp -r slave_firmware/wifi_copro_fw dist/unpacked/framework-arduinoespressif32/tools/slave_firmware
113
+ mkdir -p dist/unpacked/framework-arduinoespressif32/tools/slave_firmware
114
+ cp -r slave_firmware/* dist/unpacked/framework-arduinoespressif32/tools/slave_firmware/
115
115
(cd dist/unpacked && zip -qr ../$(basename "$FRAMEWORK_ZIP") .)
116
116
- name : Release
117
117
Original file line number Diff line number Diff line change 70
70
path : slave_firmware
71
71
- name : Add slave_firmware to framework zip
72
72
run : |
73
- echo "Listing current directory:"
74
- ls -la
75
- echo "Listing slave_firmware directory:"
76
- ls -la slave_firmware/ || echo "slave_firmware directory not found"
77
73
FRAMEWORK_ZIP=$(ls dist/framework*.zip | head -n 1)
78
74
unzip -q "$FRAMEWORK_ZIP" -d dist/unpacked
79
75
mkdir -p dist/unpacked/framework-arduinoespressif32/tools/slave_firmware
90
86
release-info.txt
91
87
env :
92
88
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
93
-
You can’t perform that action at this time.
0 commit comments