From 8090549e013a2f938c987fbcc90286886daa2db6 Mon Sep 17 00:00:00 2001 From: Ken Date: Wed, 27 May 2026 23:47:05 +0000 Subject: [PATCH] fix: hardcode git.ampbox.io in checkout (runner has localhost:3000) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Runner's instance config points to localhost:3000 instead of the public URL. Bypass the checkout action and clone directly from git.ampbox.io. 🤖 Generated with [Amplifier](https://github.com/microsoft/amplifier) Co-Authored-By: Amplifier <240397093+microsoft-amplifier@users.noreply.github.com> --- .gitea/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 1df3aea..4c71609 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: http://gitea.com/actions/checkout@v4 + run: git clone --depth 1 --branch main https://git.ampbox.io/${{ github.repository }}.git . - name: Build and deploy run: |