Skip to content

Commit 284d044

Browse files
committed
verify the sed
Signed-off-by: Ryan Cook <rcook@redhat.com>
1 parent 77b7f59 commit 284d044

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/llama-stack-build.yaml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,23 @@ jobs:
3636
run: |
3737
pip install -U .
3838
39+
- name: modify the build.yaml
40+
run: |
41+
sed -i 's/ - inline::faiss/ - inline::milvus/g' llama_stack/templates/remote-vllm/build.yaml
42+
43+
- name: display contents of buld.yaml
44+
run: |
45+
cat llama_stack/templates/remote-vllm/build.yaml
46+
3947
- name: run llama stack build
4048
run: |
4149
sed -i 's/ - inline::faiss/ - inline::milvus/g' llama_stack/templates/remote-vllm/build.yaml
4250
USE_COPY_NOT_MOUNT=true LLAMA_STACK_DIR=. llama stack build --template remote-vllm --image-type container
4351
4452
- name: tag the image
4553
run: |
46-
podman tag localhost/distribution-remote-vllm:dev quay.io/redhat-et/llama:vllm-${{env.LLAMA_RELEASE}}
54+
docker tag localhost/distribution-remote-vllm:dev quay.io/redhat-et/llama:vllm-${{env.LLAMA_RELEASE}}
4755
4856
- name: push the image
4957
run: |
50-
podman push quay.io/redhat-et/llama:vllm-${{env.LLAMA_RELEASE}}
58+
docker push quay.io/redhat-et/llama:vllm-${{env.LLAMA_RELEASE}}

0 commit comments

Comments
 (0)