Skip to content
Open
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/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: yarn build
- name: Upload build artifacts
uses: actions/upload-artifact@v4
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: Bug

The workflow uses actions/upload-artifact@v5 but actions/download-artifact@v4 in subsequent jobs. This version mismatch can lead to compatibility issues, as major version bumps often introduce breaking changes in artifact formats. As a result, the publish-npm-dry-run and publish-npm jobs may fail when trying to download these artifacts.

Fix in Cursor Fix in Web

with:
name: publish-release-artifacts-${{ github.sha }}
retention-days: 4
Expand Down