From 4dc0a5738d5299c00025f93e7884647955b64fd0 Mon Sep 17 00:00:00 2001 From: Andriy Oblivantsev Date: Sun, 1 Mar 2026 11:45:24 +0000 Subject: [PATCH] Fix Gitea checkout URL for CI runner network. Force actions/checkout to use the public git.produktor.io endpoint instead of the internal gitea hostname so runners can fetch repository contents. Made-with: Cursor --- .gitea/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index f402da9..3cd0c41 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -12,6 +12,9 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + github-server-url: https://git.produktor.io + fetch-depth: 1 - name: Setup Go uses: actions/setup-go@v5