Skip to content

Commit

Permalink
Fix regression concerning report-size-deltas (#37)
Browse files Browse the repository at this point in the history
* 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 .

* Fix: erroneous constant used for path.
  • Loading branch information
aentinger authored Feb 14, 2024
1 parent 2eaeb4c commit 3a67d0b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/compile-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -67,5 +70,5 @@ jobs:
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: sketches-report-${{ matrix.board.artifact-name-suffix }}
path: ${{ env.SKETCHES_REPORTS_PATH }}
name: ${{ env.SKETCHES_REPORTS_PATH }}

0 comments on commit 3a67d0b

Please sign in to comment.