Skip to content

Commit

Permalink
fix(cd): avoid creating artifacts with the same name
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Feb 18, 2024
1 parent 7754cab commit 1647fd8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,8 @@ jobs:
- name: Upload Python wheels
uses: actions/upload-artifact@v4
with:
name: "wheels-${{ matrix.build.TARGET }}"
working-directory: pypi
name: wheels
path: pypi/wheels

publish-npm:
Expand Down Expand Up @@ -320,7 +320,8 @@ jobs:
- uses: actions/download-artifact@v4
with:
path: pypi/wheels
name: wheels
pattern: wheels-*
merge-multiple: true
- name: Publish to PyPI
uses: PyO3/maturin-action@v1
env:
Expand Down

0 comments on commit 1647fd8

Please sign in to comment.