ci: exclude bin and act_runner_data from rsync deletion
Some checks failed
Deploy to OCIWP / deploy (push) Has been cancelled

This commit is contained in:
윤희준
2026-08-11 15:05:19 +09:00
parent d3ceec615f
commit 68608569ce

View File

@@ -28,7 +28,7 @@ jobs:
run: |
echo "Copying latest code to /app (Host Volume) and removing stale files..."
if command -v rsync &> /dev/null; then
rsync -a --delete --exclude='.git' . /app/
rsync -a --delete --exclude='.git' --exclude='bin' --exclude='act_runner_data' . /app/
else
rm -rf /app/dap-* /app/src /app/build.gradle /app/settings.gradle
cp -a . /app/