From 99a22910b24554660793a52275f594c7f30b4679 Mon Sep 17 00:00:00 2001 From: SpecialX <47072643+wangxiner55@users.noreply.github.com> Date: Fri, 19 Dec 2025 17:19:09 +0800 Subject: [PATCH] chore: remove debug steps and finalize deployment workflow --- .gitea/workflows/ci.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 18f0516..f962184 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -29,9 +29,6 @@ jobs: - name: Build run: npm run build - - name: List build output (debug) - run: ls -R .next - - name: Upload production build artifact uses: actions/upload-artifact@v3 with: @@ -53,11 +50,7 @@ jobs: with: name: next-build - - name: List directory structure (debug) - run: ls -R - - - name: Deploy to Docker - run: | + - name: Install Docker CLI run: | docker build -t nextjs-app . docker stop nextjs-app || true docker rm nextjs-app || true