From 15ab1343b91028b32d22dd9e52ec984f02c1d05a Mon Sep 17 00:00:00 2001 From: DrSmoothl <1787882683@qq.com> Date: Sun, 15 Feb 2026 16:32:20 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=B7=A5=E4=BD=9C=E6=B5=81?= =?UTF-8?q?=E4=BB=A5=E4=BD=BF=E7=94=A8=20Bun=20=E6=9B=BF=E4=BB=A3=20Node?= =?UTF-8?q?=20=E8=BF=9B=E8=A1=8C=E6=9E=84=E5=BB=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/publish-webui-dist.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish-webui-dist.yml b/.github/workflows/publish-webui-dist.yml index 85297afb..62e5e157 100644 --- a/.github/workflows/publish-webui-dist.yml +++ b/.github/workflows/publish-webui-dist.yml @@ -20,16 +20,16 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Setup Node - uses: actions/setup-node@v4 + - name: Setup Bun + uses: oven-sh/setup-bun@v2 with: - node-version: 20 + bun-version: "1.2.0" - name: Build dashboard working-directory: dashboard run: | - npm install - npm run build + bun install + bun run build - name: Prepare dist package run: |