Skip to content

Commit

Permalink
Correctly use new artifacts action (#261)
Browse files Browse the repository at this point in the history
  • Loading branch information
nsmith- authored Aug 21, 2024
1 parent 7049ef4 commit d721fdf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: artifact-sdist
path: dist/*.tar.gz

build_wheels:
Expand All @@ -49,6 +50,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: artifact-wheel-${{ matrix.os }}
path: wheelhouse/*.whl

pypi-publish:
Expand All @@ -61,8 +63,9 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist
pattern: artifact-*
merge-multiple: true

- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit d721fdf

Please sign in to comment.