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
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
manylinux: auto
args: --release --out dist -i python3.11 -i python3.12 -i python3.13

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: wheels-linux-${{ matrix.target }}
path: dist
Expand All @@ -56,7 +56,7 @@ jobs:
python-version: ['3.11', '3.12', '3.13']
include:
- target: x86_64
runner: macos-13
runner: macos-15-intel
- target: aarch64
runner: macos-14
runs-on: ${{ matrix.runner }}
Expand All @@ -72,7 +72,7 @@ jobs:
target: ${{ matrix.target }}
args: --release --out dist -i python${{ matrix.python-version }}

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: wheels-macos-${{ matrix.target }}-py${{ matrix.python-version }}
path: dist
Expand All @@ -98,7 +98,7 @@ jobs:
target: ${{ matrix.target }}
args: --release --out dist

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: wheels-windows-${{ matrix.target }}-py${{ matrix.python-version }}
path: dist
Expand All @@ -114,7 +114,7 @@ jobs:
command: sdist
args: --out dist

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: sdist
path: dist
Expand All @@ -132,7 +132,7 @@ jobs:
# at https://pypi.org/manage/account/publishing/ before tagging a release.
id-token: write
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v7
with:
path: dist
merge-multiple: true
Expand Down
Loading