We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97681f9 commit 44191c9Copy full SHA for 44191c9
1 file changed
.github/workflows/CI.yml
@@ -58,12 +58,12 @@ jobs:
58
name: wheels-artifact
59
60
- name: Build Source Distribution
61
- run: python setup.py sdist
+ # Updated to ensure the source distribution is created with the .tar.gz extension
62
+ run: python setup.py sdist --formats=gztar
63
64
- name: Upload Source Distribution
65
uses: actions/upload-artifact@v4
66
with:
- path: ./dist/*.zip
67
+ # Updated the path to match the new .tar.gz file extension
68
+ path: ./dist/*.tar.gz
69
name: source-dist-artifact
-
0 commit comments