Skip to content

Commit eda1b5e

Browse files
authored
Fix regression re report-size-deltas after updating actions/upload-artifact. (#142)
For more information see https://github.com/arduino/report-size-deltas/blob/main/docs/FAQ.md#size-deltas-report-workflow-triggered-by-schedule-event .
1 parent f60d20d commit eda1b5e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/compile-examples.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,23 @@ jobs:
4242
- fqbn: arduino:megaavr:uno2018:mode=off
4343
ethernet: true
4444
nina: true
45+
artifact-name-suffix: arduino-megaavr-uno2018
4546
- fqbn: arduino:samd:mkrwifi1010
4647
ethernet: true
4748
nina: true
49+
artifact-name-suffix: arduino-samd-mkrwifi1010
4850
- fqbn: arduino:mbed_nano:nano33ble
4951
ethernet: false
5052
nina: false
53+
artifact-name-suffix: arduino-mbed_nano-nano33ble
5154
- fqbn: arduino:mbed_portenta:envie_m7
5255
ethernet: false
5356
nina: false
57+
artifact-name-suffix: arduino-mbed_portenta-envie_m7
5458
- fqbn: arduino:mbed_opta:opta
5559
ethernet: true
5660
nina: false
61+
artifact-name-suffix: arduino-mbed_opta-opta
5762

5863
# Make board type-specific customizations to the matrix jobs
5964
include:
@@ -110,5 +115,5 @@ jobs:
110115
uses: actions/upload-artifact@v4
111116
with:
112117
if-no-files-found: error
113-
name: ${{ env.SKETCHES_REPORTS_PATH }}
118+
name: sketches-report-${{ matrix.board.artifact-name-suffix }}
114119
path: ${{ env.SKETCHES_REPORTS_PATH }}

0 commit comments

Comments
 (0)