Skip to content

Commit

Permalink
chore: use new syntax for upload/download artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
siddhantgoel committed Nov 1, 2024
1 parent 0dadc97 commit e97f756
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

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

build_wheels:
Expand All @@ -50,7 +50,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}
name: artifact-wheels-${{ matrix.os }}
path: ./dist/*.whl

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

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

0 comments on commit e97f756

Please sign in to comment.