From c1937d2a3b58ff07c0ea82d6885656b90394da88 Mon Sep 17 00:00:00 2001 From: dresber Date: Sat, 9 May 2026 11:02:17 +0200 Subject: [PATCH] correct authentication before checkout --- .gitea/workflows/python-checks.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/python-checks.yml b/.gitea/workflows/python-checks.yml index 710629e..dbb9d8c 100644 --- a/.gitea/workflows/python-checks.yml +++ b/.gitea/workflows/python-checks.yml @@ -20,6 +20,10 @@ jobs: password: ${{ secrets.REGISTRY_PASSWORD }} steps: + - name: Configure Git Auth + run: | + git config --global url."https://${{ secrets.WORKFLOW_TOKEN }}:x-oauth-basic@gitea.tech-buddy.at".insteadOf "https://gitea.tech-buddy.at" + - name: Checkout uses: actions/checkout@v4