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/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
CIBW_ARCHS_WINDOWS: ${{ matrix.name == 'windows-x86' && 'auto32' || 'native' }}
run: python -m cibuildwheel --output-dir wheelhouse

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: wheels-${{ matrix.name }}
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
CIBW_ARCHS: ppc64le
CIBW_ENVIRONMENT: LIBSSH2_VERSION=1.11.1 LIBGIT2_VERSION=1.9.1 LIBGIT2=/project/ci

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: wheels-linux-ppc
path: ./wheelhouse/*.whl
Expand All @@ -107,7 +107,7 @@ jobs:
- name: Build sdist
run: pipx run build --sdist --outdir dist

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: wheels-sdist
path: dist/*
Expand All @@ -117,7 +117,7 @@ jobs:
run: python .github/workflows/parse_release_notes.py

- name: Upload Release Notes
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: release-notes
path: ReleaseNotes.md
Expand All @@ -132,7 +132,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
path: dist
pattern: wheels-*
Expand All @@ -148,7 +148,7 @@ jobs:
runs-on: ubuntu-24.04

steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
path: dist
pattern: wheels-*
Expand All @@ -163,7 +163,7 @@ jobs:
password: ${{ secrets.PYPI_API_TOKEN }}
skip-existing: true

- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
name: release-notes
- name: Create GitHub Release
Expand Down
Loading