From 6c7f416f3531fa9755a587b595550b06759f352f Mon Sep 17 00:00:00 2001 From: YuCheng Hu Date: Sat, 7 Feb 2026 15:18:50 -0500 Subject: [PATCH] =?UTF-8?q?=E8=A7=A6=E5=8F=91=E6=9E=84=E5=BB=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b00d5be..d5cde5a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -43,7 +43,7 @@ pipeline { stage('Build / Package') { steps { - sh 'yarn add -D wrangler@latest' + sh 'yarn install' sh 'yarn docs:build' } } @@ -51,7 +51,7 @@ pipeline { stage('Deploy to Cloudflare') { steps { // Install Wrangler locally for the project - sh 'yarn add wrangler --no-save' + sh 'yarn add -D wrangler@latest' // Deploy sh "yarn wrangler pages deploy ./.vitepress/dist --project-name=${PRJ_NAME} --branch=main" } -- 2.43.0