From 3f763781f8ba38bd4bf0872529e6a95e1ad8e106 Mon Sep 17 00:00:00 2001 From: iDefineHD Date: Sun, 11 Jan 2026 00:40:12 +0000 Subject: [PATCH] Fix: Use npm install instead of npm ci --- .gitea/workflows/deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 6d9d5e9..5e42543 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -21,12 +21,12 @@ jobs: node-version: "24" - name: Install Backend Dependencies - run: npm ci --production + run: npm install --production - name: Install Frontend Dependencies run: | cd frontend - npm ci + npm install - name: Build Frontend run: | @@ -84,12 +84,12 @@ jobs: # Install backend dependencies echo "📦 Installing backend dependencies..." - npm ci --production + npm install --production # Build frontend echo "🎨 Building frontend..." cd frontend - npm ci + npm install npm run build # Deploy frontend to nginx directory