Skip to content

Commit

Permalink
ci(tinyusb): Try to find right artifacts path
Browse files Browse the repository at this point in the history
  • Loading branch information
roma-jam committed Nov 28, 2024
1 parent 8fd89b5 commit 1ead9d1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/run_idf_examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
idf-build-apps build --path examples/peripherals/usb/device/ --recursive --target esp32s2 --manifest-file examples/peripherals/.build-test-rules.yml
- uses: actions/upload-artifact@v4
with:
name: usb_device_apps_bin_${{ matrix.idf_ver }}
name: usb_device_tusb_apps_bin_${{ matrix.idf_ver }}
path: |
**/tusb_*/**/build/bootloader/bootloader.bin
**/tusb_*/**/build/partition_table/partition-table.bin
**/tusb_*/**/build/tusb_*.bin
**/tusb_*/**/build/tusb_*.elf
**/tusb_*/**/build/flasher_args.json
**/tusb_*/**/build/config/sdkconfig.json
**/tusb_*/build/bootloader/bootloader.bin
**/tusb_*/build/partition_table/partition-table.bin
**/tusb_*/build/tusb_*.bin
**/tusb_*/build/tusb_*.elf
**/tusb_*/build/flasher_args.json
**/tusb_*/build/config/sdkconfig.json
if-no-files-found: error


Expand All @@ -59,7 +59,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: usb_device_apps_bin_${{ matrix.idf_ver }}
name: usb_device_tusb_apps_bin_${{ matrix.idf_ver }}
- name: Install Python packages
env:
PIP_EXTRA_INDEX_URL: "https://dl.espressif.com/pypi/"
Expand Down

0 comments on commit 1ead9d1

Please sign in to comment.