From 781b1da2dd5a06a9d2de2c5dbcf109ac21c61aff Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Sun, 17 May 2026 21:59:09 +0700 Subject: [PATCH] fix: exclude node_modules, .git, and giant assets from scp to prevent transfer timeout --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5a9a0ac..84af3f9 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -19,7 +19,7 @@ jobs: host: ${{ secrets.VPS_HOST }} username: ${{ secrets.VPS_USERNAME }} key: ${{ secrets.VPS_SSH_KEY }} - source: "." + source: ".,!node_modules,!.git,!.github,!recordings,!dist,!.env,!*.db,!*.db-shm,!*.db-wal,!test_out.nut" target: "/opt/imphenbot" rm: false