Skip to content

Commit 7c8d81c

Browse files
authored
Merge pull request #57 from arduino-libraries/fix-report-size-deltas-regression
Fix regression re report-size-deltas after updating actions/upload-artifact.
2 parents 9633e86 + 7e19142 commit 7c8d81c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/compile-examples.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
- fqbn: arduino:mbed_giga:giga
3535
platforms: |
3636
- name: arduino:mbed_giga
37+
artifact-name-suffix: arduino-mbed_giga-giga
3738

3839
steps:
3940
- name: Checkout repository
@@ -59,4 +60,4 @@ jobs:
5960
with:
6061
if-no-files-found: error
6162
path: ${{ env.SKETCHES_REPORTS_PATH }}
62-
name: ${{ env.SKETCHES_REPORTS_PATH }}
63+
name: sketches-report-${{ matrix.board.artifact-name-suffix }}

.github/workflows/report-size-deltas.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ jobs:
2020
- name: Comment size deltas reports to PRs
2121
uses: arduino/report-size-deltas@v1
2222
with:
23-
# The name of the workflow artifact created by the sketch compilation workflow
24-
sketches-reports-source: sketches-reports
23+
# Regex matching the names of the workflow artifacts created by the "Compile Examples" workflow
24+
sketches-reports-source: ^sketches-report-.+

0 commit comments

Comments
 (0)