From d6669fc3fbbdf2d1e882771436f5aea67e53e0b9 Mon Sep 17 00:00:00 2001 From: enricobuehler Date: Sat, 4 Jul 2026 17:03:46 +0000 Subject: [PATCH] =?UTF-8?q?fix(ci/arch):=20create=20CARGO=5FHOME=20before?= =?UTF-8?q?=20chown=20=E2=80=94=20actions/cache=20doesn't=20on=20a=20miss?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 --- .gitea/workflows/arch.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/arch.yml b/.gitea/workflows/arch.yml index 1f9b627..ea496ee 100644 --- a/.gitea/workflows/arch.yml +++ b/.gitea/workflows/arch.yml @@ -91,6 +91,7 @@ jobs: # makepkg refuses to run as root; deps are already installed above (-d skips the # RPM-level check that can't see the script-installed bun anyway). useradd -m builder + mkdir -p "$CARGO_HOME" # actions/cache doesn't create it on a cache miss chown -R builder: "$PWD" "$CARGO_HOME" sudo -u builder git config --global --add safe.directory "$PWD" mkdir -p dist && chown builder: dist