From 6afe6abf9841a9624f100c6f11f4007dbbdb5f8c Mon Sep 17 00:00:00 2001 From: Alexander Entinger Date: Wed, 14 Feb 2024 11:12:27 +0100 Subject: [PATCH 1/2] 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 . --- .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 6a642b5..cfd475a 100644 --- a/.github/workflows/compile-examples.yml +++ b/.github/workflows/compile-examples.yml @@ -36,12 +36,15 @@ jobs: - fqbn: arduino:samd:arduino_zero_edbg platforms: | - name: arduino:samd + artifact-name-suffix: arduino-samd-arduino_zero_edbg - fqbn: arduino:samd:mkrzero platforms: | - name: arduino:samd + artifact-name-suffix: arduino-samd-mkrzero - fqbn: arduino:samd:nano_33_iot platforms: | - name: arduino:samd + artifact-name-suffix: arduino-samd-nano_33_iot steps: - name: Checkout repository @@ -67,5 +70,5 @@ jobs: uses: actions/upload-artifact@v4 with: if-no-files-found: error - path: ${{ env.SKETCHES_REPORTS_PATH }} + name: sketches-report-${{ matrix.board.artifact-name-suffix }} name: ${{ env.SKETCHES_REPORTS_PATH }} From d86ecd3a33a6211a361a4151e098de652fdbda2f Mon Sep 17 00:00:00 2001 From: Alexander Entinger Date: Wed, 14 Feb 2024 11:15:37 +0100 Subject: [PATCH 2/2] Fix: erroneous constant used for path. --- .github/workflows/compile-examples.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/compile-examples.yml b/.github/workflows/compile-examples.yml index cfd475a..d80f79f 100644 --- a/.github/workflows/compile-examples.yml +++ b/.github/workflows/compile-examples.yml @@ -71,4 +71,4 @@ jobs: with: if-no-files-found: error name: sketches-report-${{ matrix.board.artifact-name-suffix }} - name: ${{ env.SKETCHES_REPORTS_PATH }} + path: ${{ env.SKETCHES_REPORTS_PATH }}