Skip to content

Commit

Permalink
Fix path and wheel names
Browse files Browse the repository at this point in the history
  • Loading branch information
relf committed Jan 3, 2025
1 parent d64c0c6 commit 3242033
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
name: wheels-linux-${{ matrix.target }}
path: python/dist

windows:
runs-on: windows-latest
Expand All @@ -59,8 +59,8 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
name: wheels-windows-${{ matrix.target }}
path: python/dist

macos:
runs-on: macos-latest
Expand All @@ -82,8 +82,8 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
name: wheels-macos-${{ matrix.target }}
path: python/dist

sdist:
runs-on: ubuntu-latest
Expand All @@ -98,8 +98,8 @@ jobs:
- name: Upload sdist
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
name: wheels-sdist
path: python/dist

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

0 comments on commit 3242033

Please sign in to comment.