From ea59a92b0273ec8dbd5e8d2161729efc2f2081df Mon Sep 17 00:00:00 2001 From: Andriy Oblivantsev Date: Sun, 1 Mar 2026 11:46:41 +0000 Subject: [PATCH] Fix CI repository URL format for manual checkout. Use the self-hosted repository URL without the .git suffix so authenticated fetch resolves correctly in the Gitea runner. Made-with: Cursor --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index ef00966..958450d 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: run: | rm -rf .git git init . - git remote add origin "https://oauth2:${{ github.token }}@git.produktor.io/${{ github.repository }}.git" + git remote add origin "https://oauth2:${{ github.token }}@git.produktor.io/${{ github.repository }}" git -c http.sslVerify=false fetch --depth=1 origin "${{ github.sha }}" git checkout --detach FETCH_HEAD