Fix release job's download build artifacts step - #32
Conversation
|
Coverage Impact This PR will not change total coverage. 🚦 See full report on Qlty Cloud »🛟 Help
|
❌ 1 blocking issue (1 total)
|
| GH_TOKEN: ${{ github.token }} | ||
| RELEASE_TAG: ${{ github.event.release.tag_name }} | ||
| run: gh release upload "$RELEASE_TAG" release-assets/* --clobber | ||
| run: gh release upload "${{ github.event.release.tag_name }}" release-assets/* --repo "${{ github.repository }}" --clobber |
There was a problem hiding this comment.
Pull request overview
This PR updates the GitHub Actions release workflow to correctly download build artifacts produced by the build matrix and reliably upload them to the GitHub release.
Changes:
- Pin
actions/download-artifactto a specific commit (v8.0.1) for the release job. - Add
skip-decompress: truewhen downloading artifacts intorelease-assets/. - Update the
gh release uploadinvocation to use the release tag expression directly and explicitly set--repo.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

No description provided.