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 3e1c4c3 commit 837ff87Copy full SHA for 837ff87
.github/workflows/publish.yml
@@ -64,7 +64,7 @@ jobs:
64
65
- uses: actions/upload-artifact@v4
66
with:
67
- name: wheels-sdist
+ name: sdist
68
path: dist/*.tar.gz
69
70
@@ -76,6 +76,19 @@ jobs:
76
77
steps:
78
- uses: actions/download-artifact@v5
79
+ with:
80
81
+ path: dist
82
+
83
+ - uses: actions/download-artifact@v5
84
85
+ name: wheels-*
86
+ path: wheel_artifacts
87
+ - name: Gather wheels into ./dist
88
+ run: |
89
+ mkdir -p dist
90
+ find wheel_artifacts -type f -name "*.whl" -exec mv {} dist/ \;
91
92
- name: Publish distribution 📦 to PyPI
93
uses: pypa/gh-action-pypi-publish@release/v1
94
0 commit comments