Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
args: --release --out dist
manylinux: auto
- name: Upload Linux wheels
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: wheels-linux-${{ matrix.target }}
path: dist/*
Expand All @@ -52,7 +52,7 @@ jobs:
target: ${{ matrix.target }}
args: --release --out dist
- name: Upload Windows wheels
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: wheels-windows-${{ matrix.target }}
path: dist/*
Expand All @@ -77,7 +77,7 @@ jobs:
target: ${{ matrix.target }}
args: --release --out dist
- name: Upload macOS wheels
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: wheels-macos-${{ matrix.platform.target }}
path: dist/*
Expand All @@ -92,7 +92,7 @@ jobs:
command: sdist
args: --out dist
- name: Upload sdist
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: sdist
path: dist/*
Expand Down
Loading