From 9f573428107c662e78ee091f21de77889810c085 Mon Sep 17 00:00:00 2001 From: rob thijssen Date: Mon, 27 Apr 2026 13:20:56 +0300 Subject: [PATCH] fix(ci): use --recursive instead of --archive for UI deploy --archive includes -pogDt which tries to set permissions, ownership, and timestamps on the root-owned web root directory. Only --recursive and --links are needed for deploying static files. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/deploy-ui.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy-ui.yml b/.gitea/workflows/deploy-ui.yml index 516eca7..3817917 100644 --- a/.gitea/workflows/deploy-ui.yml +++ b/.gitea/workflows/deploy-ui.yml @@ -50,10 +50,10 @@ jobs: - name: Deploy UI to web root run: | rsync \ - --archive \ + --recursive \ + --links \ --verbose \ --delete \ - --omit-dir-times \ --chmod D755,F644 \ --include="index.html" \ --include="assets/***" \