Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/build-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
fi

- name: Upload build artifacts
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
with:
name: conda-packages-${{ matrix.bins.bin }}-${{ matrix.bins.target }}
path: |
Expand Down Expand Up @@ -152,13 +152,13 @@ jobs:
target: [linux-64, linux-aarch64, linux-ppc64le, win-64, osx-64, osx-arm64]
steps:
- name: Download conda package artifacts for ${{ matrix.target }}
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6
with:
pattern: conda-packages-*-${{ matrix.target }}
path: conda-artifacts-${{ matrix.target }}
merge-multiple: true
- name: Upload aggregated conda packages for ${{ matrix.target }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
with:
name: conda-packages-${{ matrix.target }}
path: conda-artifacts-${{ matrix.target }}/**/*.conda
Expand All @@ -170,7 +170,7 @@ jobs:
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- name: Download all conda packages
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6
with:
pattern: conda-packages-*
path: conda-packages
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Show sccache stats
run: pixi run -e build sccache --stop-server
- name: Upload executables as artifacts
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
with:
name: pixi-build-backends-linux-x86_64
path: artifacts-channel
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
run: pixi run -e build sccache --stop-server
working-directory: ${{ env.PIXI_WORKSPACE }}
- name: Upload executables as artifacts
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
with:
name: pixi-build-backends-windows-x86_64
path: ${{ env.PIXI_WORKSPACE }}/artifacts-channel
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
- name: Show sccache stats
run: pixi run -e build sccache --stop-server
- name: Upload executables as artifacts
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
with:
name: pixi-build-backends-macos-aarch64
path: artifacts-channel
Expand Down
Loading