From aa849849e86c8e4ee825afe50a5e323c274b9c22 Mon Sep 17 00:00:00 2001 From: archipelago Date: Wed, 1 Jul 2026 10:44:07 -0400 Subject: [PATCH] fix(deploy): exclude releases/ from the rsync payload releases/ (the local repo's own historical build artifacts -- dozens of versioned binaries + frontend tarballs, 7-10GB) was never excluded, so every deploy synced it to the target's root disk. Filled .198 (29GB disk) to 100% mid-deploy and .228 to 100% right after a "successful" deploy -- the target node never needs its own copy of the release archive, only the built binary+frontend actually get installed into system paths. Co-Authored-By: Claude Sonnet 5 --- scripts/deploy-to-target.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/deploy-to-target.sh b/scripts/deploy-to-target.sh index c7533c89..29280ed1 100755 --- a/scripts/deploy-to-target.sh +++ b/scripts/deploy-to-target.sh @@ -555,6 +555,7 @@ rsync -avz --delete \ --exclude 'image-recipe/results' \ --exclude 'image-recipe/_archived/build' \ --exclude 'image-recipe/_archived/results' \ + --exclude 'releases' \ "$PROJECT_DIR/" "$TARGET_HOST:$TARGET_DIR/" section_end