From ac6b22db7635352b233620b98a29cf5160d3e713 Mon Sep 17 00:00:00 2001 From: Dorian Date: Thu, 2 Apr 2026 14:15:14 +0100 Subject: [PATCH] fix: restore continue-on-error on checkout (runner can't fetch Gitea) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The act_runner on .228 cannot git-fetch from git.tx1138.com via the actions/checkout action (auth/network issue). Without continue-on-error the build dies before the ~/archy rsync fallback can run. Restore it so the fallback works. The red cross on checkout is cosmetic — the fallback step provides the correct code. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/build-iso-dev.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/build-iso-dev.yml b/.gitea/workflows/build-iso-dev.yml index 67826a21..137fb37f 100644 --- a/.gitea/workflows/build-iso-dev.yml +++ b/.gitea/workflows/build-iso-dev.yml @@ -16,6 +16,7 @@ jobs: with: fetch-depth: 1 timeout-minutes: 5 + continue-on-error: true - name: Sync from local repo (fallback if checkout failed) run: |