From b846f0f74f6a1a129c07b0cfcbf4fb2d41529cc1 Mon Sep 17 00:00:00 2001 From: Gaubee Date: Thu, 29 Jan 2026 16:58:38 +0800 Subject: [PATCH] fix: make release install non-interactive --- scripts/release.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release.ts b/scripts/release.ts index 47986e98f..53909c523 100644 --- a/scripts/release.ts +++ b/scripts/release.ts @@ -605,7 +605,7 @@ function resolveCdWorkflow(): string | null { async function installDependencies() { log.step('安装依赖') - exec('pnpm install --frozen-lockfile') + exec('pnpm install --frozen-lockfile', { env: { CI: 'true' } }) log.success('依赖安装完成') }