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 dc25480 commit 808964dCopy full SHA for 808964d
.github/workflows/build-wheels.yml
@@ -103,3 +103,18 @@ jobs:
103
- uses: actions/upload-artifact@v3
104
with:
105
path: ./wheelhouse/*.whl
106
+
107
+ build_sdist:
108
+ name: Build SDist
109
+ runs-on: ubuntu-latest
110
+ steps:
111
+ - uses: actions/checkout@v3
112
+ with:
113
+ fetch-depth: 0 # for setuptools_scm
114
115
+ - name: Build SDist
116
+ run: pipx run build --sdist
117
118
+ - uses: actions/upload-artifact@v3
119
120
+ path: dist/*.tar.gz
0 commit comments