File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -98,14 +98,19 @@ jobs:
98
98
echo $content
99
99
echo EOF
100
100
} >> "$GITHUB_OUTPUT"
101
- - name : list arduino esp32 core files
102
- run : |
103
- ls /home/runner/.arduino15/packages/esp32/hardware/esp32/*/tools/partitions
104
101
- name : Check boot_app0 file existence (esp32sx built from core, not-source)
105
102
id : check_files
106
103
uses : andstor/file-existence-action@v2
107
104
with :
108
105
files : " /home/runner/.arduino15/packages/esp32/hardware/esp32/*/tools/partitions/boot_app0.bin"
106
+ - name : list arduino esp32 core files
107
+ if : steps.check_files.outputs.files_exists == 'true'
108
+ run : |
109
+ ls /home/runner/.arduino15/packages/esp32/hardware/esp32/*/tools/partitions
110
+ - name : list arduino esp32 bsp core files
111
+ if : steps.check_files.outputs.files_exists == 'false'
112
+ run : |
113
+ ls /home/runner/Arduino/hardware/espressif/esp32/tools/partitions
109
114
- name : boot_app0 file from arduino-cli core
110
115
if : steps.check_files.outputs.files_exists == 'true'
111
116
run : mv /home/runner/.arduino15/packages/esp32/hardware/esp32/*/tools/partitions/boot_app0.bin wippersnapper.${{ matrix.arduino-platform }}.fatfs.${{ env.WS_VERSION }}.boot_app0.bin
You can’t perform that action at this time.
0 commit comments