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
16 changes: 8 additions & 8 deletions .github/workflows/build-rocm-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,14 +121,14 @@ jobs:

- name: Download base Docker image (normal mode)
if: github.event.inputs.reuse_base_wheels != 'true'
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: rocm-base-image
path: artifacts/docker-image

- name: Download base Docker image (reuse_base_wheels mode - from previous run)
if: github.event.inputs.reuse_base_wheels == 'true'
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: rocm-base-image
path: artifacts/docker-image
Expand All @@ -141,14 +141,14 @@ jobs:

- name: Download base wheels (normal mode)
if: github.event.inputs.reuse_base_wheels != 'true'
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: rocm-base-wheels
path: artifacts/base-wheels

- name: Download base wheels (reuse_base_wheels mode - from previous run)
if: github.event.inputs.reuse_base_wheels == 'true'
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: rocm-base-wheels
path: artifacts/base-wheels
Expand Down Expand Up @@ -238,21 +238,21 @@ jobs:

- name: Download all artifacts (normal mode)
if: github.event.inputs.reuse_base_wheels != 'true' && github.event.inputs.publish_only != 'true'
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
path: artifacts

- name: Download all artifacts (reuse_base_wheels mode - from previous run + current)
if: github.event.inputs.reuse_base_wheels == 'true' && github.event.inputs.publish_only != 'true'
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
path: artifacts
run-id: ${{ github.event.inputs.previous_run_id }}
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Download vLLM wheel from current run (reuse_base_wheels mode)
if: github.event.inputs.reuse_base_wheels == 'true' && github.event.inputs.publish_only != 'true'
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: vllm-wheel
path: artifacts/vllm-wheel
Expand All @@ -261,7 +261,7 @@ jobs:

- name: Download all artifacts (publish_only mode - from previous run only)
if: github.event.inputs.publish_only == 'true'
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
path: artifacts
run-id: ${{ github.event.inputs.previous_run_id }}
Expand Down
Loading