Skip to content

Commit

Permalink
git: fix CI release using checkout v4
Browse files Browse the repository at this point in the history
  • Loading branch information
gautierdag committed Aug 29, 2024
1 parent da13992 commit daceabe
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: dist-${{ matrix.target }}
path: dist

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

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

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

release:
Expand All @@ -130,7 +130,9 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: wheels
pattern: dist-*
merge-multiple: true
path: dist
- name: Publish to PyPI
uses: PyO3/maturin-action@v1
with:
Expand Down

0 comments on commit daceabe

Please sign in to comment.