There was an error while loading. Please reload this page.
2 parents b4ba5fa + 3086320 commit bb9d795Copy full SHA for bb9d795
1 file changed
.github/workflows/publish.yml
@@ -84,9 +84,10 @@ jobs:
84
fi
85
echo "Tag $TAG matches pyproject version $PKG"
86
- name: Build distributions
87
- run: |
88
- uv pip install --system build
89
- python -m build
+ # `uv build` produces the sdist + wheel into dist/ using the project's
+ # build backend — no need to pip-install `build` into the runner's
+ # system Python (which is PEP 668 externally-managed and rejects it).
90
+ run: uv build
91
- name: Upload dist artifacts
92
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
93
with:
0 commit comments