We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc8bab9 commit 82c707dCopy full SHA for 82c707d
1 file changed
.github/workflows/CI.yml
@@ -49,9 +49,17 @@ jobs:
49
- name: Build Wheels
50
run: python -m cibuildwheel --output-dir wheelhouse
51
52
- - name: Upload Build Artifacts
+ - name: Build Source Distribution
53
+ run: python setup.py sdist
54
+
55
+ - name: Upload Wheels
56
uses: actions/upload-artifact@v2
57
with:
58
path: ./wheelhouse/*.whl
59
60
+ - name: Upload Source Distribution
61
+ uses: actions/upload-artifact@v2
62
+ with:
63
+ path: ./dist/*.zip
64
65
0 commit comments