From 147d1625c29acdd38be437621ba5c6dc47bf4ed3 Mon Sep 17 00:00:00 2001 From: Alexander Entinger Date: Fri, 16 Feb 2024 06:17:46 +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 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/compile-examples.yml b/.github/workflows/compile-examples.yml index cb31c08..8bc6795 100644 --- a/.github/workflows/compile-examples.yml +++ b/.github/workflows/compile-examples.yml @@ -44,10 +44,13 @@ jobs: board: - fqbn: arduino:samd:mkr1000 type: wifi101 + artifact-name-suffix: arduino-samd-mkr1000 - fqbn: arduino:samd:mkrgsm1400 type: gsm + artifact-name-suffix: arduino-samd-mkrgsm1400 - fqbn: arduino:megaavr:uno2018 type: megaavr + artifact-name-suffix: arduino-megaavr-uno2018 # make board type-specific customizations to the matrix jobs include: @@ -91,4 +94,4 @@ jobs: with: if-no-files-found: error path: ${{ env.SKETCHES_REPORTS_PATH }} - name: ${{ env.SKETCHES_REPORTS_PATH }} + name: sketches-report-${{ matrix.board.artifact-name-suffix }}