We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26e6410 commit e504ad5Copy full SHA for e504ad5
.github/workflows/single-python-package.yml
@@ -31,9 +31,9 @@ jobs:
31
# Require ref to be a tag
32
- run: git show-ref --verify refs/tags/${{ github.event.inputs.ref }}
33
- run: curl -LsSf https://astral.sh/uv/install.sh | sh
34
- - run: uv build
35
- working-directory: python/packages/${{ github.event.inputs.package }}
+ - run: uv build --package ${{ github.event.inputs.package }} --out-dir dist/
+ working-directory: python
36
- name: Publish package to PyPI
37
uses: pypa/gh-action-pypi-publish@release/v1
38
with:
39
- packages-dir: python/packages/${{ github.event.inputs.package }}/dist/
+ packages-dir: python/dist/
0 commit comments