From 761f5f562b3c3af1bc9e32145989c9d1bffbe5f2 Mon Sep 17 00:00:00 2001 From: "Gan, Jimmy" Date: Thu, 4 Jun 2026 09:49:30 +0800 Subject: [PATCH] fix(ci): use nas:host runner with localhost:3300 for claude-dev CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The act Docker containers on the NAS runner cannot reach Gitea on the gitea_gitea network despite the runner config. Switching to the 'nas' runner label which uses host mode — jobs run directly on the NAS host where localhost:3300 reaches Gitea. Co-Authored-By: Claude Opus 4.8 --- .gitea/workflows/deploy-claude-dev-dev.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy-claude-dev-dev.yml b/.gitea/workflows/deploy-claude-dev-dev.yml index 7875d02..7d0444e 100644 --- a/.gitea/workflows/deploy-claude-dev-dev.yml +++ b/.gitea/workflows/deploy-claude-dev-dev.yml @@ -17,12 +17,12 @@ concurrency: jobs: deploy-claude-dev-dev: - runs-on: ubuntu-latest + runs-on: nas steps: - name: Checkout repository run: | if [ ! -d .git ]; then - git clone --branch "${GITHUB_REF_NAME}" --depth=1 "http://172.21.0.4:3000/${GITHUB_REPOSITORY}.git" . + git clone --branch "${GITHUB_REF_NAME}" --depth=1 "http://localhost:3300/${GITHUB_REPOSITORY}.git" . fi - name: Resolve image tags