From 2b88e5a189034d21c17e507aeeab8c6e6a8e9235 Mon Sep 17 00:00:00 2001 From: Christoph Brandau Date: Thu, 23 Jul 2026 17:10:08 +0200 Subject: [PATCH] chore(ci): update build root ownership permissions The workflow script responsible for application building is updated to adjust file ownership. Previously, ownership was restricted only to the source directory. By changing the scope to the entire build root, we ensure that all generated files and intermediate artifacts are correctly owned by the builder user before running makepkg. --- .gitea/workflows/app_builder.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/app_builder.yaml b/.gitea/workflows/app_builder.yaml index b1b327c..1b0c8c7 100644 --- a/.gitea/workflows/app_builder.yaml +++ b/.gitea/workflows/app_builder.yaml @@ -212,7 +212,7 @@ jobs: cp -a . "$BUILD_ROOT/source" useradd --create-home builder - chown -R builder:builder "$BUILD_ROOT/source" + chown -R builder:builder "$BUILD_ROOT" runuser -u builder -- \ bash -lc "cd '$BUILD_ROOT/source' && makepkg --cleanbuild --noconfirm"