Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/conda-python-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
GH_TOKEN: ${{ github.token }}
- name: Upload conda repo
if: "!cancelled()"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: conda-repo-py${{ matrix.PY_VER }}-${{ matrix.ARCH }}
path: "/tmp/conda-bld-output"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
GH_TOKEN: ${{ github.token }}
- name: Upload docs
if: "!cancelled()"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: docs
path: ${{ github.workspace }}/docs/build/html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheel-windows-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

- name: Upload wheel
if: "!cancelled()"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: wheel-py${{ matrix.PY_VER }}-windows
path: ${{ env.wheel_path }}
4 changes: 2 additions & 2 deletions .github/workflows/wheels-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ jobs:
shell: bash -leo pipefail {0}
- name: Upload sdist
if: "!cancelled()"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: sdist-py${{ matrix.PY_VER }}-${{ matrix.ARCH }}
path: ${{ env.sdist_path }}
Expand All @@ -160,7 +160,7 @@ jobs:
if: ${{ !(matrix.ARCH == 'amd64' && matrix.PY_VER == '3.10' && matrix.CUDA_VER == '12.8.0') }}
- name: Upload wheel
if: "!cancelled()"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: wheel-py${{ matrix.PY_VER }}-${{ matrix.ARCH }}-linux
path: ${{ env.wheel_path }}
Loading