diff --git a/ci/build/build_source.sh b/ci/build/build_source.sh index c09da14b..d3cc7239 100644 --- a/ci/build/build_source.sh +++ b/ci/build/build_source.sh @@ -31,7 +31,7 @@ export TRITON_CONTAINER_VERSION=${TAG#v} # example: 24.06 echo "TRITON_CONTAINER_VERSION = ${TRITON_CONTAINER_VERSION}" # Get latest VLLM RELEASED VERSION from https://github.com/vllm-project/vllm/releases -TAG=$(curl https://api.github.com/repos/triton-inference-server/server/releases/latest | grep -i "tag_name" | awk -F '"' '{print $4}') +TAG=$(curl https://api.github.com/repos/vllm-project/vllm/releases/latest | grep -i "tag_name" | awk -F '"' '{print $4}') export VLLM_VERSION=${TAG#v} # example: 0.5.3.post1 echo "VLLM_VERSION = ${VLLM_VERSION}"