From 8abf07a0d42e6553c2933a0f5e535f1e7a19cf9c Mon Sep 17 00:00:00 2001 From: adtpdn Date: Fri, 3 Jul 2026 17:13:30 +0800 Subject: [PATCH] chore(ci): route SSH clone via docker bridge gateway instead of tailscale IP --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index ca6067c..1b503ef 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -22,12 +22,12 @@ jobs: - name: Add Gitea SSH Host Key run: | mkdir -p ~/.ssh - printf "Host 100.79.174.108\n Port 222\n StrictHostKeyChecking no\n" > ~/.ssh/config + printf "Host 172.18.0.1\n Port 222\n StrictHostKeyChecking no\n" > ~/.ssh/config chmod 600 ~/.ssh/config - name: Checkout Code run: | - git clone ssh://git@100.79.174.108:222/danchie/tekton.git . + git clone ssh://git@172.18.0.1:222/danchie/tekton.git . git checkout $TAG_NAME - name: Install tools