From 3a8f171f194fae2d898c529ecbf59ac9ef13b357 Mon Sep 17 00:00:00 2001 From: shanshanzhong Date: Sun, 4 Jan 2026 03:52:31 -0800 Subject: [PATCH] chore: enable scp debug and enhanced file listing --- .gitea/workflows/docker.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/docker.yml b/.gitea/workflows/docker.yml index 0c7bc28..61df10e 100644 --- a/.gitea/workflows/docker.yml +++ b/.gitea/workflows/docker.yml @@ -60,10 +60,12 @@ jobs: - name: Check Artifacts run: | echo "Current directory: $(pwd)" - ls -la + echo "Listing all files in workspace:" + find . -maxdepth 2 -not -path '*/.*' if [ -f "site_dist.tgz" ]; then echo "✅ File exists: site_dist.tgz" ls -lh site_dist.tgz + echo "File path: $(readlink -f site_dist.tgz)" else echo "❌ File NOT found: site_dist.tgz" exit 1 @@ -79,6 +81,7 @@ jobs: source: "site_dist.tgz" target: "/tmp/ci-upload" overwrite: true + debug: true - name: Extract archive to deploy path uses: appleboy/ssh-action@v1.0.3