From db98b994f8afed872022cde3d37f87578bd09f11 Mon Sep 17 00:00:00 2001 From: Mikayla Dobson Date: Fri, 31 Oct 2025 11:58:19 -0500 Subject: [PATCH] ensure actions is using the correct base server for git --- .gitea/workflows/rooted/web.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitea/workflows/rooted/web.yaml b/.gitea/workflows/rooted/web.yaml index 038bbd5..9716c26 100644 --- a/.gitea/workflows/rooted/web.yaml +++ b/.gitea/workflows/rooted/web.yaml @@ -19,10 +19,16 @@ inputs: description: "Branch to deploy for this job" required: false default: ${{ gitea.ref_name }} + GITHUB_SERVER_URL: + description: "Github server where this repository is hosted" + required: false + default: "https://gitea.lab.mikayla.dev" + env: MONGO_URI: $INPUT_MONGO_URI DB_NAME: $INPUT_DB_NAME + GITHUB_SERVER_URL: $GITHUB_SERVER_URL GCP_CLIENT_ID: ${{ secrets.GCP_CLIENT_ID }} GCP_CLIENT_SECRET: ${{ secrets.GCP_CLIENT_SECRET }} NEXTAUTH_SECRET: ${{ secrets.NEXTAUTH_SECRET }} @@ -37,6 +43,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 with: + github-server-url: $GITHUB_SERVER_URL repository: $REPOSITORY ref: $BRANCH