Skip to content

Commit

Permalink
Attempt to fix artifact upload conflict
Browse files Browse the repository at this point in the history
Signed-off-by: Johannes Mueller <[email protected]>
  • Loading branch information
johannes-mueller committed Aug 1, 2024
1 parent 3992397 commit 2716bdd
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/pypi-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
python setup.py bdist_wheel
- uses: actions/upload-artifact@v4
with:
name: artifact-wheel
name: artifact-wheel-${{ matrix.os }}
path: ./dist/*.whl


Expand Down Expand Up @@ -80,7 +80,12 @@ jobs:

- uses: actions/download-artifact@v4
with:
name: artifact-wheel
name: artifact-wheel-windows-latest
path: dist

- uses: actions/download-artifact@v4
with:
name: artifact-wheel-ubuntu-latest
path: dist

- uses: pypa/[email protected]
Expand Down

0 comments on commit 2716bdd

Please sign in to comment.