From 47cf9831545ba2d162fe79a95c54f8f0feecb85c Mon Sep 17 00:00:00 2001 From: steinhelge Date: Fri, 20 Mar 2026 16:03:56 +0100 Subject: [PATCH] Route registry push via internal network to bypass Cloudflare act_runner and Gitea run on the same host (alu/192.168.86.31), so we override DNS in the runner to push directly over LAN. This avoids Cloudflare's upload size limit (413 on 7.79GB image). Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 74ef1f0..0aca559 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -16,6 +16,9 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Route registry traffic via internal network + run: echo "192.168.86.31 gitea.theriise.net" | sudo tee -a /etc/hosts + - name: Log in to Gitea Container Registry uses: docker/login-action@v3 with: