From bdaf3de9b3ece4d81b6bb297b75272e08f819720 Mon Sep 17 00:00:00 2001 From: zwang86 <46699021+zwang86@users.noreply.github.com> Date: Wed, 4 Feb 2026 15:49:41 -0800 Subject: [PATCH] fix: add SGLANG_IS_IN_CI env var to release-docs workflow (#18225) Co-authored-by: Zeyu Wang Co-authored-by: edwingao28 --- .github/workflows/execute-notebook.yml | 2 ++ .github/workflows/release-docs.yml | 3 +++ 2 files changed, 5 insertions(+) diff --git a/.github/workflows/execute-notebook.yml b/.github/workflows/execute-notebook.yml index 953f34b72..837c58ada 100644 --- a/.github/workflows/execute-notebook.yml +++ b/.github/workflows/execute-notebook.yml @@ -13,6 +13,8 @@ concurrency: group: execute-notebook-${{ github.ref }} cancel-in-progress: true +env: + SGLANG_IS_IN_CI: true jobs: run-all-notebooks: diff --git a/.github/workflows/release-docs.yml b/.github/workflows/release-docs.yml index fc725d88b..bfacfb39a 100644 --- a/.github/workflows/release-docs.yml +++ b/.github/workflows/release-docs.yml @@ -14,6 +14,9 @@ concurrency: group: release-docs-${{ github.ref }} cancel-in-progress: true +env: + SGLANG_IS_IN_CI: true + jobs: execute-and-deploy: runs-on: 1-gpu-runner