From 982f0d89bebbb5a7987e08a5eb27ca40d91648f1 Mon Sep 17 00:00:00 2001 From: Shaun Campbell Date: Fri, 20 Feb 2026 20:37:19 -0500 Subject: [PATCH] ci) fix checkout for gitea subpath --- .gitea/workflows/main-image.yml | 3 +++ .gitea/workflows/pr-checks.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.gitea/workflows/main-image.yml b/.gitea/workflows/main-image.yml index 59d6536..ab5f77b 100644 --- a/.gitea/workflows/main-image.yml +++ b/.gitea/workflows/main-image.yml @@ -16,6 +16,9 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + github-server-url: https://cloud.campbellwireless.net/git + fetch-depth: 0 - name: Setup Docker Buildx uses: docker/setup-buildx-action@v3 diff --git a/.gitea/workflows/pr-checks.yml b/.gitea/workflows/pr-checks.yml index 543bf32..8e11684 100644 --- a/.gitea/workflows/pr-checks.yml +++ b/.gitea/workflows/pr-checks.yml @@ -10,6 +10,9 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + github-server-url: https://cloud.campbellwireless.net/git + fetch-depth: 0 - name: Setup Bun uses: oven-sh/setup-bun@v2