From dddfd432a76ae63c7d978b60b0338f96e0a7e8f7 Mon Sep 17 00:00:00 2001 From: Andriy Oblivantsev Date: Thu, 19 Feb 2026 19:42:20 +0000 Subject: [PATCH] Fix Gitea Actions: replace actions/checkout with manual git clone Runner job containers cannot resolve internal 'gitea' hostname. Use public URL (git.produktor.io) for checkout instead. Co-authored-by: Cursor --- .github/workflows/release.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ea6130b..083b38f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -27,7 +27,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: https://github.com/actions/checkout@v4 + run: | + git clone --depth=1 https://git.produktor.io/${{ gitea.repository }}.git . + git checkout ${{ gitea.sha }} - name: Install Helm run: | @@ -49,9 +51,9 @@ jobs: contents: write steps: - name: Checkout - uses: https://github.com/actions/checkout@v4 - with: - fetch-depth: 0 + run: | + git clone https://git.produktor.io/${{ gitea.repository }}.git . + git checkout ${{ gitea.sha }} - name: Install Helm run: |