From 82fe08b0928f40b8af6c9c889b6832030e7f0343 Mon Sep 17 00:00:00 2001 From: rookie4show Date: Fri, 18 Jul 2025 10:50:32 +0800 Subject: [PATCH] fix deploy errors --- .github/workflows/deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e7abcc8..a5cab48 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -23,7 +23,7 @@ jobs: npm run build - name: Deploy to server via SSH - uses: appleboy/scp-action@v0.1.6 + uses: appleboy/scp-action@v1.0.0 with: host: ${{ secrets.SERVER_HOST }} username: ${{ secrets.SERVER_USERNAME }} @@ -32,3 +32,5 @@ jobs: source: "dist/*" target: "/var/www/html/yys-editor" rm: true + debug: true + capture_stdout: true