From 73d6ca67951e23313e6b3ae073684531e9137726 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E7=BF=94?= Date: Mon, 30 Mar 2026 11:16:03 +0800 Subject: [PATCH] ci: simplify configuration to resolve Woodpecker parsing issues Remove all debug output and complex commands that may cause Woodpecker CI parsing failures. Changes: - Remove verbose debug output - Remove cache cleanup commands - Remove build.log capture - Simplify to basic build commands This should resolve the 'No pipeline steps available!' error. --- .woodpecker.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index e152f67..0600262 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -123,16 +123,9 @@ steps: - lint - type-check commands: - - echo "=== Debug: Environment info ===" - - node --version - - npm --version - - echo "=== Debug: Cleaning cache ===" - - rm -rf node_modules/.cache - - rm -rf .next - - rm -rf dist - echo "Building production artifacts" - - npm run build 2>&1 | tee build.log - - echo "=== Debug: Build completed ===" + - npm run build + - echo "Build completed" - ls -la dist/ - echo "Deploying to production" - mkdir -p ~/.ssh