From e8604e2c02dfc5937a8c44bd4d5b9bcfac2253ad Mon Sep 17 00:00:00 2001 From: adtpdn Date: Fri, 3 Jul 2026 17:10:39 +0800 Subject: [PATCH] chore(ci): use correct tailscale IP and ssh format --- .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 3285e75..0434157 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 thunderobot\n HostName 100.93.226.13\n Port 222\n StrictHostKeyChecking no\n" > ~/.ssh/config + printf "Host thunderobot\n HostName 100.79.174.108\n Port 222\n StrictHostKeyChecking no\n" > ~/.ssh/config chmod 600 ~/.ssh/config - name: Checkout Code run: | - git clone git@thunderobot:danchie/tekton.git . + git clone ssh://git@thunderobot:222/danchie/tekton.git . git checkout $TAG_NAME - name: Install tools