We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1157389 commit 2ddd610Copy full SHA for 2ddd610
.github/workflows/publish.yaml
@@ -20,14 +20,16 @@ jobs:
20
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
21
with:
22
python-version: "3.12"
23
+ - name: Install build tools
24
+ run: python -m pip install build
25
- name: Build sdist
- run: python -m build --sdist
26
+ run: python -m build --sdist lib/
27
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
28
29
name: artifact-sdist
30
path: dist/*.tar.gz
31
- name: Build wheel
- run: python -m build --wheel
32
+ run: python -m build --wheel lib/
33
34
35
name: artifact-wheel
0 commit comments