Skip to content

Commit f99519f

Browse files
committed
action checkout path fix
1 parent 077c5b7 commit f99519f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
uses: actions/checkout@v4
1717
with:
1818
submodules: recursive
19+
path: sdk
1920
# get the RPI UF2
2021
- name: get the os
2122
run: wget -O /tmp/rp2-pico.uf2 "https://micropython.org/resources/firmware/$RPOS_UF2FILE"
@@ -28,7 +29,7 @@ jobs:
2829
# build it
2930
- run: |
3031
pip install uf2utils
31-
python -m uf2utils.examples.custom_pico --fs_root tt-micropython-firmware/src --upython /tmp/rp2-pico.uf2 --out /tmp/tt-demo-rp2040.uf2
32+
python -m uf2utils.examples.custom_pico --fs_root $GITHUB_WORKSPACE/sdk/src --upython /tmp/rp2-pico.uf2 --out /tmp/tt-demo-rp2040.uf2
3233
- name: Upload Release
3334
uses: ncipollo/release-action@v1
3435
with:

0 commit comments

Comments
 (0)