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
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:

- name: Generate license file
run: uv run --no-project python ./dev/create_license.py
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: python-wheel-license
path: LICENSE.txt
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
run: find target/wheels/

- name: Archive wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist-${{ matrix.os }}
path: target/wheels/*
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
run: find target/wheels/

- name: Archive wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist-macos-aarch64
path: target/wheels/*
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
rustup-components: rust-std rustfmt # Keep them in one line due to https://github.com/PyO3/maturin-action/issues/153
args: --release --manylinux 2014 --features protoc,substrait
- name: Archive wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist-manylinux-x86_64
path: target/wheels/*
Expand Down Expand Up @@ -226,7 +226,7 @@ jobs:
rustup-components: rust-std rustfmt # Keep them in one line due to https://github.com/PyO3/maturin-action/issues/153
args: --release --features protoc,substrait
- name: Archive wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dist-manylinux-aarch64
path: target/wheels/*
Expand Down Expand Up @@ -271,7 +271,7 @@ jobs:
- build-sdist
steps:
- name: Merge Build Artifacts
uses: actions/upload-artifact/merge@v4
uses: actions/upload-artifact/merge@v5
with:
name: dist
pattern: dist-*
Expand Down