Skip to content

Commit 124f27d

Browse files
committed
Make artifacts name unique
1 parent 506a1a8 commit 124f27d

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Diff for: .github/workflows/compile-examples.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,23 @@ jobs:
3434
matrix:
3535
board:
3636
- fqbn: arduino:mbed:nano33ble
37+
id: nano33ble
3738
- fqbn: arduino:mbed:envie_m7
39+
id: envie_m7
3840
- fqbn: arduino:mbed:nanorp2040connect
41+
id: nanorp2040connect
3942
- fqbn: arduino:mbed:nicla_sense
43+
id: nicla_sense
4044
- fqbn: arduino:mbed:nicla_vision
45+
id: nicla_vision
4146
- fqbn: arduino:mbed:opta
47+
id: opta
4248
- fqbn: arduino:mbed:giga
49+
id: giga
4350
- fqbn: arduino:mbed:nicla_voice
51+
id: nicla_voice
4452
- fqbn: arduino:mbed:edge_control
53+
id: edge_control
4554

4655
# compile only the examples compatible with each board
4756
include:
@@ -229,4 +238,4 @@ jobs:
229238
uses: actions/upload-artifact@v4
230239
with:
231240
path: ${{ env.SKETCHES_REPORTS_PATH }}
232-
name: ${{ env.SKETCHES_REPORTS_PATH }}
241+
name: ${{ env.SKETCHES_REPORTS_PATH }}-${{ matrix.board.id }}

0 commit comments

Comments
 (0)