Skip to content

Commit a5a6b38

Browse files
committed
ci(tinyusb): Changed the path one more time
1 parent 2557abb commit a5a6b38

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

.github/workflows/run_idf_examples.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,18 @@ jobs:
2424
. ${IDF_PATH}/export.sh
2525
pip install idf-component-manager==1.5.2 idf-build-apps --upgrade
2626
python .github/ci/override_managed_component.py tinyusb . ${IDF_PATH}/examples/peripherals/usb/device/tusb_*
27-
cd ${IDF_PATH}
28-
idf-build-apps find --path examples/peripherals/usb/device/ --recursive --target esp32s2 --manifest-file examples/peripherals/.build-test-rules.yml
29-
idf-build-apps build --path examples/peripherals/usb/device/ --recursive --target esp32s2 --manifest-file examples/peripherals/.build-test-rules.yml
27+
idf-build-apps find --path ${IDF_PATH}/examples/peripherals/usb/device/ --recursive --target esp32s2 --manifest-file ${IDF_PATH}/examples/peripherals/.build-test-rules.yml
28+
idf-build-apps build --path ${IDF_PATH}/examples/peripherals/usb/device/ --recursive --target esp32s2 --manifest-file ${IDF_PATH}/examples/peripherals/.build-test-rules.yml
3029
- uses: actions/upload-artifact@v4
3130
with:
3231
name: usb_device_tusb_apps_bin_${{ matrix.idf_ver }}
3332
path: |
34-
**/tusb_*/build/bootloader/bootloader.bin
35-
**/tusb_*/build/partition_table/partition-table.bin
36-
**/tusb_*/build/tusb_*.bin
37-
**/tusb_*/build/tusb_*.elf
38-
**/tusb_*/build/flasher_args.json
39-
**/tusb_*/build/config/sdkconfig.json
33+
${IDF_PATH}/examples/peripherals/usb/device/tusb_*/build/bootloader/bootloader.bin
34+
${IDF_PATH}/examples/peripherals/usb/device/tusb_*/build/partition_table/partition-table.bin
35+
${IDF_PATH}/examples/peripherals/usb/device/tusb_*/build/tusb_*.bin
36+
${IDF_PATH}/examples/peripherals/usb/device/tusb_*/build/tusb_*.elf
37+
${IDF_PATH}/examples/peripherals/usb/device/tusb_*/build/flasher_args.json
38+
${IDF_PATH}/examples/peripherals/usb/device/tusb_*/build/config/sdkconfig.json
4039
if-no-files-found: error
4140

4241

0 commit comments

Comments
 (0)