fix: install rsync before deploy sync step
CI - Build & Test / Backend (.NET) (push) Successful in 24s
CI - Build & Test / Frontend (Vue/TS) (push) Successful in 16s
CI - Build & Test / Security Check (push) Successful in 2s

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.
This commit is contained in:
2026-06-09 20:27:08 +02:00
parent c01c6c990e
commit 247dddc2fc
+3
View File
@@ -37,6 +37,9 @@ jobs:
- name: Checkout latest code - name: Checkout latest code
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Install rsync
run: apt-get update -qq && apt-get install -y -qq rsync
- name: Sync to deploy path - name: Sync to deploy path
run: | run: |
rsync -a --delete \ rsync -a --delete \