Skip to content

Commit e13a227

Browse files
committed
Repair workflows
1 parent f95ec11 commit e13a227

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build_micropython_xiao_esp32c5.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ jobs:
5757
- name: Upload Xiao esp32c5 artifacts to Release
5858
if: github.event_name == 'release'
5959
run: |
60-
mv lib/micropython/ports/esp32/build-ESP32_GENERIC_C5/firmware.bin lib/micropython/ports/esp32/build-ESP32_GENERIC_C5/micropython_xiao_esp32c5.bin
60+
mv lib/micropython/ports/esp32/build-ESP32_GENERIC_C5/firmware.bin lib/micropython/ports/esp32/build-ESP32_GENERIC_C5/xiao_esp32c5.bin
6161
gh release upload ${{ github.event.release.tag_name }} \
62-
lib/micropython/ports/esp32/build-ESP32_GENERIC_C5/micropython_xiao_esp32c5.bin \
62+
lib/micropython/ports/esp32/build-ESP32_GENERIC_C5/xiao_esp32c5.bin \
6363
--clobber
6464
env:
6565
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/build_micropython_xiao_nrf52840.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ jobs:
8181
- name: Upload Xiao nRF52840 artifacts to Release
8282
if: github.event_name == 'release'
8383
run: |
84-
mv build_nrf52840/zephyr/zephyr.uf2 build_nrf52840/zephyr/xiao_nrf52840.uf2
84+
mv build_nrf52840/zephyr/zephyr/zephyr.uf2 build_nrf52840/zephyr/zephyr/xiao_nrf52840.uf2
8585
gh release upload ${{ github.event.release.tag_name }} \
86-
build_nrf52840/zephyr/xiao_nrf52840.uf2 \
86+
build_nrf52840/zephyr/zephyr/xiao_nrf52840.uf2 \
8787
--clobber
8888
env:
8989
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)