We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4bc778 commit b6dc550Copy full SHA for b6dc550
1 file changed
.github/workflows/ci.yml
@@ -22,7 +22,7 @@ jobs:
22
- run: python setup.py sdist
23
- uses: actions/upload-artifact@v4
24
with:
25
- name: dist
+ name: dist-sdist
26
path: dist
27
28
matrix_config:
@@ -89,8 +89,8 @@ jobs:
89
90
91
92
93
- path: dist
+ name: dist-wheels # Single artifact for all wheels
+ path: dist/*
94
95
upload:
96
name: Publish
@@ -100,7 +100,11 @@ jobs:
100
steps:
101
- uses: actions/download-artifact@v4
102
103
104
+ path: dist
105
+ - uses: actions/download-artifact@v4
106
+ with:
107
+ name: dist-wheels
108
109
- uses: pypa/gh-action-pypi-publish@master
110
0 commit comments