Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/compile-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
sketches-report-path: ${{ env.SKETCHES_REPORTS_PATH }}

- name: Save sketches report as workflow artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v5
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Matrix Build Artifacts Overwritten in v5

Upgrading to actions/upload-artifact@v5 introduces a breaking change for matrix builds. Unlike v2, v5 artifacts are immutable and scoped per job. This means multiple matrix jobs uploading artifacts with the same name (sketches-reports) will cause compilation reports to be lost or overwritten, as only one artifact is preserved.

Fix in Cursor Fix in Web

with:
if-no-files-found: error
path: ${{ env.SKETCHES_REPORTS_PATH }}
Expand Down
Loading