Skip to content
Open
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
14 changes: 7 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
sccache: ${{ github.ref_type != 'tag' }} # zizmor: ignore[cache-poisoning]
manylinux: auto
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist-${{ github.job }}-${{ matrix.target }}
path: dist
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
manylinux: musllinux_1_2
sccache: ${{ github.ref_type != 'tag' }} # zizmor: ignore[cache-poisoning]
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist-${{ github.job }}-${{ matrix.target }}
path: dist
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
args: --release --out dist --interpreter '3.10 3.11 3.12 3.13 3.14' --interpreter ${{ matrix.target == 'x64' && 'pypy3.10' || '' }}
sccache: ${{ github.ref_type != 'tag' }} # zizmor: ignore[cache-poisoning]
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist-${{ github.job }}-${{ matrix.target }}
path: dist
Expand Down Expand Up @@ -243,7 +243,7 @@ jobs:
args: --release --out dist --interpreter ${{ steps.cp311.outputs.python-path }} ${{ steps.cp312.outputs.python-path }} ${{ steps.cp313.outputs.python-path }} ${{ steps.cp314.outputs.python-path }}
sccache: ${{ github.ref_type != 'tag' }} # zizmor: ignore[cache-poisoning]
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist-${{ github.job }}-${{ matrix.target }}
path: dist
Expand Down Expand Up @@ -277,7 +277,7 @@ jobs:
args: --release --out dist --interpreter '3.13t 3.14t'
sccache: ${{ github.ref_type != 'tag' }} # zizmor: ignore[cache-poisoning]
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist-${{ github.job }}-${{ matrix.target }}-free-threaded
path: dist
Expand Down Expand Up @@ -315,7 +315,7 @@ jobs:
args: --release --out dist --interpreter '3.10 3.11 3.12 3.13 3.13t 3.14 3.14t pypy3.10 pypy3.11'
sccache: ${{ github.ref_type != 'tag' }} # zizmor: ignore[cache-poisoning]
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist-${{ github.job }}-${{ matrix.target }}
path: dist
Expand All @@ -336,7 +336,7 @@ jobs:
command: sdist
args: --out dist
- name: Upload sdist
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist-${{ github.job }}
path: dist
Expand Down