From 4a278b1419a3741ad55ff700f8da7f9447a624e6 Mon Sep 17 00:00:00 2001 From: Andriy Oblivantsev Date: Thu, 19 Feb 2026 20:56:50 +0000 Subject: [PATCH] Fix CI checkout: use token auth for git clone Repo requires authentication; use gitea.token in clone URLs. Co-authored-by: Cursor --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 43e05b9..a598831 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout run: | - git clone --depth=1 https://git.produktor.io/${{ gitea.repository }}.git . + git clone --depth=1 https://${{ gitea.actor }}:${{ gitea.token }}@git.produktor.io/${{ gitea.repository }}.git . git checkout ${{ gitea.sha }} - name: Install Helm @@ -48,7 +48,7 @@ jobs: steps: - name: Checkout (full history for tags) run: | - git clone https://git.produktor.io/${{ gitea.repository }}.git . + git clone https://${{ gitea.actor }}:${{ gitea.token }}@git.produktor.io/${{ gitea.repository }}.git . git fetch --tags - name: Check if release-worthy changes