From 2b8ee5feac40057035ea1c3889180d7304357bbe Mon Sep 17 00:00:00 2001 From: Andriy Oblivantsev Date: Sun, 1 Mar 2026 11:48:22 +0000 Subject: [PATCH] Use non-.git repository URL in CI checkout. Align manual clone URL with this Gitea server's accepted path format while keeping TLS verification disabled for the runner environment. 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 d077d11..536e97e 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://git.produktor.io/${{ github.repository }}.git" + git remote add origin "https://git.produktor.io/${{ github.repository }}" git -c http.sslVerify=false fetch --depth=1 origin "${{ github.sha }}" git checkout --detach FETCH_HEAD