From a20ac2553981b2fca4f170f2050fd63d688287ca Mon Sep 17 00:00:00 2001 From: chensuyue Date: Fri, 16 Aug 2024 01:44:43 +0800 Subject: [PATCH] bug fix Signed-off-by: chensuyue --- .github/workflows/_example-workflow.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/_example-workflow.yml b/.github/workflows/_example-workflow.yml index 7e86ed288..3c45ff996 100644 --- a/.github/workflows/_example-workflow.yml +++ b/.github/workflows/_example-workflow.yml @@ -53,15 +53,15 @@ jobs: - name: Clone required Repo run: | cd ${{ github.workspace }}/${{ inputs.example }}/docker - build_compose_path=${{ github.workspace }}/${{ inputs.example }}/docker/docker_build_compose.yaml + docker_compose_path=${{ github.workspace }}/${{ inputs.example }}/docker/docker_build_compose.yaml if [[ $(grep -c "tei-gaudi:" ${docker_compose_path}) != 0 ]]; then git clone https://github.com/huggingface/tei-gaudi.git fi if [[ $(grep -c "vllm:" ${docker_compose_path}) != 0 ]]; then - git clone https://github.com/huggingface/tei-gaudi.git + git clone https://github.com/vllm-project/vllm.git fi git clone https://github.com/opea-project/GenAIComps.git - cd GenAIComps && checkout ${{ inputs.GenAIComps_branch }} && cd ../ + cd GenAIComps && git checkout ${{ inputs.GenAIComps_branch }} && cd ../ - name: Build Image if: ${{ fromJSON(inputs.build) }}