There was an error while loading. Please reload this page.
1 parent 7cecfaa commit fd2d95bCopy full SHA for fd2d95b
1 file changed
.github/workflows/ci.yml
@@ -142,14 +142,15 @@ jobs:
142
runs-on: ubuntu-latest
143
144
steps:
145
- - name: Download Python wheels
+ - name: Download all wheels
146
uses: actions/download-artifact@v4
147
with:
148
- path: dist
+ path: artifacts
149
150
- name: Collect wheels
151
run: |
152
- find dist -name "*.whl" -exec mv {} dist/ \;
+ mkdir -p dist
153
+ find artifacts -name "*.whl" -exec cp {} dist/ \;
154
155
- name: Publish Python wheels to PyPI
156
uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments