From 80cbb6f32a1365bbfd758e2d89190f4748f1c829 Mon Sep 17 00:00:00 2001 From: Jean-Michel Tremblay Date: Thu, 23 Apr 2026 17:14:43 -0400 Subject: [PATCH] test --- .forgejo/workflows/build.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index b086f16..c086035 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -37,22 +37,25 @@ jobs: - name: Build run: | set -ex - # 1. Create the cache and force it to be writable by the Docker container mkdir -p "$PWD/.hugo-cache" chmod -R 777 "$PWD/.hugo-cache" - # 2. Run Hugo + # We pass the Git config as an environment variable to bypass the 'dubious ownership' docker run --rm \ -v "$PWD:/src" \ -v "$PWD/.hugo-cache:/cache" \ -e GOPATH=/cache \ -e HUGO_CACHEDIR=/cache \ + -e GIT_CONFIG_COUNT=1 \ + -e GIT_CONFIG_KEY_0=safe.directory \ + -e GIT_CONFIG_VALUE_0=/src \ -w /src/site \ forgejo.jmopines.com/jm/hugo-git:latest \ - --minify --enableGitInfo --destination "public" --baseURL "/" + --minify --enableGitInfo --noTimes --destination "public" --baseURL "/" - # 3. Fix permissions back so the forgejo user can read the output - sudo chmod -R 755 site/public + # Ensure the forgejo user owns the output so rsync can read it + # (Docker root often leaves files owned by root) + sudo chown -R forgejo:forgejo site/public - name: Deploy run: | set -ex