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
8 changes: 4 additions & 4 deletions .github/workflows/build_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
CIBW_BUILD_VERBOSITY: 1
CIBW_ARCHS: all
CIBW_BUILD: cp${{ matrix.python }}-${{ matrix.platform_id }}
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: cibw-wheels-cp${{ matrix.python }}-${{ matrix.platform_id }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
Expand All @@ -76,11 +76,11 @@ jobs:
run: pipx run build --sdist
- name: Build sdist for cmd
run: cd cmd && pipx run build
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: cibw-sdist
path: dist/*.tar.gz
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: cibw-cmd
path: cmd/dist/*
Expand All @@ -92,7 +92,7 @@ jobs:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
pattern: cibw-*
path: dist
Expand Down