Skip to content

Commit cefd546

Browse files
chensuyuedmsuehir
authored andcommitted
Fix CD workflow typos (opea-project#605)
Signed-off-by: chensuyue <suyue.chen@intel.com>
1 parent b1953a5 commit cefd546

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/_example-workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,15 @@ jobs:
5353
- name: Clone required Repo
5454
run: |
5555
cd ${{ github.workspace }}/${{ inputs.example }}/docker
56-
build_compose_path=${{ github.workspace }}/${{ inputs.example }}/docker/docker_build_compose.yaml
56+
docker_compose_path=${{ github.workspace }}/${{ inputs.example }}/docker/docker_build_compose.yaml
5757
if [[ $(grep -c "tei-gaudi:" ${docker_compose_path}) != 0 ]]; then
5858
git clone https://github.com/huggingface/tei-gaudi.git
5959
fi
6060
if [[ $(grep -c "vllm:" ${docker_compose_path}) != 0 ]]; then
61-
git clone https://github.com/huggingface/tei-gaudi.git
61+
git clone https://github.com/vllm-project/vllm.git
6262
fi
6363
git clone https://github.com/opea-project/GenAIComps.git
64-
cd GenAIComps && checkout ${{ inputs.GenAIComps_branch }} && cd ../
64+
cd GenAIComps && git checkout ${{ inputs.GenAIComps_branch }} && cd ../
6565
6666
- name: Build Image
6767
if: ${{ fromJSON(inputs.build) }}

.github/workflows/manual-bom-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2024 Intel Corporation
22
# SPDX-License-Identifier: Apache-2.0
33

4-
name: Examples docker images BoM scan
4+
name: Examples docker images BoM scan on manual event
55
on:
66
workflow_dispatch:
77
inputs:

.github/workflows/manual-docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2024 Intel Corporation
22
# SPDX-License-Identifier: Apache-2.0
33

4-
name: Examples CD workflow on manual event
4+
name: Examples publish docker image on manual event
55
on:
66
workflow_dispatch:
77
inputs:

0 commit comments

Comments
 (0)