Skip to content

Commit

Permalink
Add artifact name to download before wheel PyPI upload (#1882)
Browse files Browse the repository at this point in the history
Otherwise, the folder structure gets messed up, and twine errors out.
  • Loading branch information
nicholasjng authored Nov 29, 2024
1 parent c58e6d0 commit 4b0533b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
merge_wheels:
name: Merge all built wheels into one artifact
runs-on: ubuntu-latest
needs: build_wheels
needs: [build_sdist, build_wheels]
steps:
- name: Merge wheels
uses: actions/upload-artifact/merge@v4
Expand All @@ -96,5 +96,6 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: dist
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 4b0533b

Please sign in to comment.