We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94d78b8 commit 6c3081dCopy full SHA for 6c3081d
.github/workflows/build_wheels.yml
@@ -179,15 +179,14 @@ jobs:
179
id-token: write
180
181
steps:
182
- - name: Download all artifacts
183
- run: |
184
- for artifact in $(gh run list-artifacts --run-id ${{ github.run_id }}); do
185
- gh run download-artifact "$artifact" -p ./wheelhouse
186
- done
187
- mkdir -p dist
188
- mv wheelhouse/*.whl dist/
+ - name: Download wheels
+ uses: actions/download-artifact@v4
+ with:
+ path: dist
+ merge-multiple: true
+
189
- name: Publish distribution to PyPI
190
uses: pypa/gh-action-pypi-publish@release/v1
191
env:
192
TWINE_USERNAME: "__token__"
193
- TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
+ TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
0 commit comments