From 247dddc2fc202dadcb41055f2a35ea194314320a Mon Sep 17 00:00:00 2001 From: DevOps Date: Tue, 9 Jun 2026 20:27:08 +0200 Subject: [PATCH] fix: install rsync before deploy sync step The Gitea runner ubuntu-latest image lacks rsync, causing the Sync-to-deploy-path step to fail with exit code 127. Added apt-get install rsync before the sync step. --- .gitea/workflows/deploy.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index bfff950..220b8ec 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -37,6 +37,9 @@ jobs: - name: Checkout latest code uses: actions/checkout@v3 + - name: Install rsync + run: apt-get update -qq && apt-get install -y -qq rsync + - name: Sync to deploy path run: | rsync -a --delete \