Skip to content

Commit 3bc9469

Browse files
committed
gh-actions: Fix cargo-make uploads
Signed-off-by: Daniel Schaefer <[email protected]>
1 parent 4f8917d commit 3bc9469

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.github/workflows/firmware.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -63,26 +63,29 @@ jobs:
6363
with:
6464
name: inputmodule_fw_bin
6565
path: |
66-
ledmatrix.bin
67-
ledmatrix.uf2
68-
ledmatrix_10k.uf2
69-
ledmatrix_evt.uf2
66+
# Main firmware
67+
target/thumbv6m-none-eabi/release/ledmatrix.bin
68+
target/thumbv6m-none-eabi/release/ledmatrix.uf2
69+
# EVT 10k resistor
70+
target/thumbv6m-none-eabi/release/ledmatrix_10k.uf2
71+
# EVT (27k) resistor
72+
target/thumbv6m-none-eabi/release/ledmatrix_evt.uf2
7073
7174
- name: Upload b1display files
7275
uses: actions/upload-artifact@v3
7376
with:
7477
name: inputmodule_fw_uf2
7578
path: |
76-
b1display.bin
77-
b1display.uf2
79+
target/thumbv6m-none-eabi/release/b1display.bin
80+
target/thumbv6m-none-eabi/release/b1display.uf2
7881
7982
- name: Upload c1minimal files
8083
uses: actions/upload-artifact@v3
8184
with:
8285
name: inputmodule_fw_uf2
8386
path: |
84-
c1minimal.bin
85-
c1minimal.uf2
87+
target/thumbv6m-none-eabi/release/c1minimal.bin
88+
target/thumbv6m-none-eabi/release/c1minimal.uf2
8689
8790
linting:
8891
name: Linting

0 commit comments

Comments
 (0)