Skip to content

Commit

Permalink
Avoid artifact name conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
nya3jp committed Dec 28, 2024
1 parent 6f6377e commit f415526
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:

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

upload_pypi:
Expand All @@ -84,10 +84,16 @@ jobs:
name: sdist
path: dist

- name: Download artifacts (wheels)
- name: Download artifacts (wheels-ubuntu-latest)
uses: actions/download-artifact@v4
with:
name: wheels
name: wheels-ubuntu-latest
path: dist

- name: Download artifacts (wheels-macos-latest)
uses: actions/download-artifact@v4
with:
name: wheels-macos-latest
path: dist

- name: Publish package to Test PyPI
Expand Down

0 comments on commit f415526

Please sign in to comment.