Skip to content

Commit cba578b

Browse files
authored
Merge pull request #321 from docker/release
fix(ci): add missing tags
2 parents d03aac3 + 8aa5f78 commit cba578b

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,12 @@ jobs:
7676
echo "docker/model-runner:latest-rocm" >> "$GITHUB_OUTPUT"
7777
fi
7878
echo 'EOF' >> "$GITHUB_OUTPUT"
79+
echo "musa<<EOF" >> "$GITHUB_OUTPUT"
80+
echo "docker/model-runner:${{ inputs.releaseTag }}-musa" >> "$GITHUB_OUTPUT"
81+
if [ "${{ inputs.pushLatest }}" == "true" ]; then
82+
echo "docker/model-runner:latest-musa" >> "$GITHUB_OUTPUT"
83+
fi
84+
echo 'EOF' >> "$GITHUB_OUTPUT"
7985
8086
- name: Log in to DockerHub
8187
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef
@@ -133,6 +139,7 @@ jobs:
133139
push: true
134140
sbom: true
135141
provenance: mode=max
142+
tags: ${{ steps.tags.outputs.vllm-cuda }}
136143

137144
- name: Build ROCm image
138145
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83
@@ -143,7 +150,7 @@ jobs:
143150
build-args: |
144151
"LLAMA_SERVER_VERSION=${{ inputs.llamaServerVersion }}"
145152
"LLAMA_SERVER_VARIANT=rocm"
146-
"BASE_IMAGE=rocm/ubuntu:22.04"
153+
"BASE_IMAGE=rocm/dev-ubuntu-22.04"
147154
push: true
148155
sbom: true
149156
provenance: mode=max

0 commit comments

Comments
 (0)