From 972a8bfe5c0c0fca74bfd3eb9084bb185477fee8 Mon Sep 17 00:00:00 2001 From: Alexander Entinger Date: Mon, 19 Feb 2024 06:44:32 +0100 Subject: [PATCH] Fix regression re report-size-deltas after updating actions/upload-artifact. For more information see https://github.com/arduino/report-size-deltas/blob/main/docs/FAQ.md#size-deltas-report-workflow-triggered-by-schedule-event . --- .github/workflows/compile-examples.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/compile-examples.yml b/.github/workflows/compile-examples.yml index cf86100..aae4de7 100644 --- a/.github/workflows/compile-examples.yml +++ b/.github/workflows/compile-examples.yml @@ -42,18 +42,23 @@ jobs: - fqbn: arduino:megaavr:uno2018:mode=off ethernet: true nina: true + artifact-name-suffix: arduino-megaavr-uno2018 - fqbn: arduino:samd:mkrwifi1010 ethernet: true nina: true + artifact-name-suffix: arduino-samd-mkrwifi1010 - fqbn: arduino:mbed_nano:nano33ble ethernet: false nina: false + artifact-name-suffix: arduino-mbed_nano-nano33ble - fqbn: arduino:mbed_portenta:envie_m7 ethernet: false nina: false + artifact-name-suffix: arduino-mbed_portenta-envie_m7 - fqbn: arduino:mbed_opta:opta ethernet: true nina: false + artifact-name-suffix: arduino-mbed_opta-opta # Make board type-specific customizations to the matrix jobs include: @@ -110,5 +115,5 @@ jobs: uses: actions/upload-artifact@v4 with: if-no-files-found: error - name: ${{ env.SKETCHES_REPORTS_PATH }} + name: sketches-report-${{ matrix.board.artifact-name-suffix }} path: ${{ env.SKETCHES_REPORTS_PATH }}