From 2827c1f16085918ceeb637bf487c55264c70cc01 Mon Sep 17 00:00:00 2001 From: libingxiang Date: Mon, 4 Aug 2025 16:31:20 +0800 Subject: [PATCH] ci --- .gitea/workflows/deploy.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 5621e62..c921c40 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -31,15 +31,15 @@ jobs: node --version npm --version - # 检查并安装依赖(如果需要) - - name: Install dependencies if needed - run: | - if [ ! -d "node_modules" ]; then - echo "node_modules not found, installing dependencies..." - npm install - else - echo "node_modules already exists, skipping installation" - fi +# # 检查并安装依赖(如果需要) +# - name: Install dependencies if needed +# run: | +# if [ ! -d "node_modules" ]; then +# echo "node_modules not found, installing dependencies..." +# npm install +# else +# echo "node_modules already exists, skipping installation" +# fi # 构建项目 - name: Build project