From 4055130a85ee4ff5b618e056306d8f7924b3bd65 Mon Sep 17 00:00:00 2001 From: "Kevin H. Luu" Date: Tue, 29 Apr 2025 17:52:11 -0700 Subject: [PATCH] [release] Always git fetch all to get latest tag on TPU release (#17322) --- .buildkite/release-pipeline.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.buildkite/release-pipeline.yaml b/.buildkite/release-pipeline.yaml index a21a657c4b05e..642c0259c7893 100644 --- a/.buildkite/release-pipeline.yaml +++ b/.buildkite/release-pipeline.yaml @@ -57,6 +57,7 @@ steps: agents: queue: tpu_queue_postmerge commands: + - "git fetch --all" - "DOCKER_BUILDKIT=1 docker build --build-arg max_jobs=16 --build-arg USE_SCCACHE=1 --build-arg GIT_REPO_CHECK=1 --tag vllm/vllm-tpu:nightly --tag vllm/vllm-tpu:$BUILDKITE_COMMIT --progress plain -f docker/Dockerfile.tpu ." - "docker push vllm/vllm-tpu:nightly" - "docker push vllm/vllm-tpu:$BUILDKITE_COMMIT"