Release workflow was broken#928
Conversation
|
Thanks for the pull request, @salman2013! This repository is currently maintained by Once you've gone through the following steps feel free to tag them in a comment and let them know that your changes are ready for engineering review. 🔘 Get product approvalIf you haven't already, check this list to see if your contribution needs to go through the product review process.
🔘 Provide contextTo help your reviewers and other members of the community understand the purpose and larger context of your changes, feel free to add as much of the following information to the PR description as you can:
🔘 Get a green buildIf one or more checks are failing, continue working on your changes until this is no longer the case and your build turns green. DetailsWhere can I find more information?If you'd like to get more details on all aspects of the review process for open source pull requests (OSPRs), check out the following resources: When can I expect my changes to be merged?Our goal is to get community contributions seen and reviewed as efficiently as possible. However, the amount of time that it takes to review and merge a PR can vary significantly based on factors such as:
💡 As a result it may take up to several weeks or months to complete a review and merge your PR. |
There was a problem hiding this comment.
Pull request overview
Fixes the repository’s release workflow by updating the build step used by python-semantic-release, aligning the build approach with a working configuration from xblocks-extra.
Changes:
- Switch
semantic_release’sbuild_commandfromuv buildtopython -m build(installingbuildon-demand). - Remove the
setup-uvstep from the GitHub release workflow sinceuvis no longer used there.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
pyproject.toml |
Updates semantic-release build command to use python -m build instead of uv build. |
.github/workflows/release.yml |
Removes uv installation step from the release job to match the new build approach. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Description
The release workflow has some issues in it, https://github.com/openedx/XBlock/actions/runs/27301129203/job/80647052902
This PR is to fix that. I followed the xblocks-extra repo to fix this issue.
Ref: https://github.com/openedx/xblocks-extra/blob/990f2e7b1aca4c53e47c797e5ff6fc3682f99129/pyproject.toml#L190