2 Commits

Author SHA1 Message Date
adtpdn ab3ffbbec8 chore(ci): alias both gitea and thunderobot directly to IP
Release / Build & Release (push) Failing after 7m27s
2026-07-03 18:01:36 +08:00
adtpdn da5c319a5b chore(ci): use internal gitea docker networking alias for checkout
Release / Build & Release (push) Failing after 1m5s
2026-07-03 17:56:10 +08:00
+6 -5
View File
@@ -20,15 +20,16 @@ jobs:
ssh-private-key: ${{ secrets.TEKTON_SSH_KEY }}
- name: Install tools
run: apt-get update -qq && apt-get install -y -qq docker.io curl unzip
- name: Connect job container to gitea_default network
run: docker network connect gitea_default $(hostname)
run: apt-get update -qq && apt-get install -y -qq curl unzip
- name: Add Gitea SSH Host Key
run: |
mkdir -p ~/.ssh
ssh-keyscan -p 222 thunderobot >> ~/.ssh/known_hosts || true
ssh-keyscan -p 22 172.18.0.2 >> ~/.ssh/known_hosts || true
# Direct IP routing avoids dns completely
printf "Host gitea\n HostName 172.18.0.2\n Port 22\n StrictHostKeyChecking no\n" > ~/.ssh/config
printf "Host thunderobot\n HostName 172.18.0.2\n Port 22\n StrictHostKeyChecking no\n" >> ~/.ssh/config
chmod 600 ~/.ssh/config
- name: Checkout Code
uses: actions/checkout@v4