Skip to content

Commit 3a67d0b

Browse files
authored
Fix regression concerning report-size-deltas (#37)
* Fix regression concerning report-size-deltas For more information see here: https://github.com/arduino/report-size-deltas/blob/main/docs/FAQ.md#size-deltas-report-workflow-triggered-by-schedule-event . * Fix: erroneous constant used for path.
1 parent 2eaeb4c commit 3a67d0b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/compile-examples.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,15 @@ jobs:
3636
- fqbn: arduino:samd:arduino_zero_edbg
3737
platforms: |
3838
- name: arduino:samd
39+
artifact-name-suffix: arduino-samd-arduino_zero_edbg
3940
- fqbn: arduino:samd:mkrzero
4041
platforms: |
4142
- name: arduino:samd
43+
artifact-name-suffix: arduino-samd-mkrzero
4244
- fqbn: arduino:samd:nano_33_iot
4345
platforms: |
4446
- name: arduino:samd
47+
artifact-name-suffix: arduino-samd-nano_33_iot
4548

4649
steps:
4750
- name: Checkout repository
@@ -67,5 +70,5 @@ jobs:
6770
uses: actions/upload-artifact@v4
6871
with:
6972
if-no-files-found: error
73+
name: sketches-report-${{ matrix.board.artifact-name-suffix }}
7074
path: ${{ env.SKETCHES_REPORTS_PATH }}
71-
name: ${{ env.SKETCHES_REPORTS_PATH }}

0 commit comments

Comments
 (0)