From c3e143a878101df3d5fd7be1c5085a3dc11cc5d7 Mon Sep 17 00:00:00 2001 From: CalebLewallen Date: Thu, 14 May 2026 10:34:32 -0400 Subject: [PATCH] Add GITEA_SERVER_URL override to fix checkout networking --- .gitea/workflows/deploy.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 3c5d69dc..aa5bd4fe 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -6,14 +6,14 @@ on: jobs: deploy: - # 'ubuntu-latest' is a GitHub label. Many Gitea runners use 'act' - # or specific OS labels. runs-on: ubuntu-latest + env: + # Attempting to override the internal Gitea URL + GITEA_SERVER_URL: http://git.homelab.lewallen.io:3000 steps: - name: Checkout uses: actions/checkout@v4 with: - # Explicitly provide the token to ensure the runner can pull the private repo token: ${{ secrets.GITHUB_TOKEN }} - name: Build Docker Image