From 2fad299f3d8237807f2fa492eb7c9be4a2ea19a4 Mon Sep 17 00:00:00 2001 From: Scott Hatlen Date: Mon, 9 Mar 2026 20:39:37 -0700 Subject: [PATCH] Fix checkout to use external Gitea URL, auth token for private repos Co-Authored-By: Claude Opus 4.6 --- .gitea/workflows/deploy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 9aac53e..5fadc2d 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout run: | - git clone --depth 1 --branch "${{ github.ref_name }}" "${{ github.server_url }}/${{ github.repository }}.git" . + git clone --depth 1 --branch "${{ github.ref_name }}" "https://git.scottyah.com/${{ github.repository }}.git" . git checkout "${{ github.sha }}" - name: Build image