From b4b21e2b16c4529cf9e81ef1fb348167e7d83202 Mon Sep 17 00:00:00 2001 From: SpecialX <47072643+wangxiner55@users.noreply.github.com> Date: Fri, 19 Dec 2025 16:15:53 +0800 Subject: [PATCH] chore: add debug step to list artifact structure --- .gitea/workflows/ci.yml | 3 +++ next.config.ts | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 826e232..66ee257 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -54,6 +54,9 @@ jobs: with: name: next-build + - name: List directory structure (debug) + run: ls -R + - name: Deploy to Docker run: | docker build -t nextjs-app . diff --git a/next.config.ts b/next.config.ts index 68a6c64..78ae706 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,4 +1,4 @@ -import type { NextConfig } from "next"; +type NextConfig = any; const nextConfig: NextConfig = { output: "standalone",