Skip to content

Commit

Permalink
Merge pull request #896 from epage/maturin
Browse files Browse the repository at this point in the history
chore(ci): Update for artifact handling
  • Loading branch information
epage authored Jan 2, 2024
2 parents 654cdfa + 53eb27d commit 7c065b5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/maturin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-linux-${{ matrix.target }}
path: dist

musllinux:
Expand All @@ -61,7 +61,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-musllinux-${{ matrix.target }}
path: dist

windows:
Expand All @@ -84,7 +84,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-windows-${{ matrix.target }}
path: dist

macos:
Expand All @@ -107,7 +107,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-macos-${{ matrix.target }}
path: dist

sdist:
Expand All @@ -122,7 +122,7 @@ jobs:
- name: Upload sdist
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-sdist
path: dist

release:
Expand All @@ -133,7 +133,7 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: wheels
merge-multiple: true
- name: Publish to PyPI
uses: PyO3/maturin-action@v1
env:
Expand Down

0 comments on commit 7c065b5

Please sign in to comment.