From 8f89603c31e233b5aa7f623457f13891c8a1f219 Mon Sep 17 00:00:00 2001 From: Agent Zero Date: Mon, 6 Jul 2026 18:54:12 -0400 Subject: [PATCH] fix: use IP 192.168.68.17:3000 instead of git.sysloggh.net hostname for CI checkout The Gitea Actions runner cannot resolve the internal hostname git.sysloggh.net during checkout. Using the direct IP address resolves the DNS resolution issue in CI pipeline steps. --- .gitea/workflows/pr-pipeline.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/pr-pipeline.yaml b/.gitea/workflows/pr-pipeline.yaml index c7d7425..7525b10 100644 --- a/.gitea/workflows/pr-pipeline.yaml +++ b/.gitea/workflows/pr-pipeline.yaml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout repository run: | - git clone --depth=50 "http://git.sysloggh.net/${{ gitea.repository }}.git" . + git clone --depth=50 "http://192.168.68.17:3000/${{ gitea.repository }}.git" . git fetch origin "${{ gitea.ref }}" --depth=50 git checkout "${{ gitea.sha }}" @@ -34,7 +34,7 @@ jobs: steps: - name: Checkout repository run: | - git clone --depth=50 "http://git.sysloggh.net/${{ gitea.repository }}.git" . + git clone --depth=50 "http://192.168.68.17:3000/${{ gitea.repository }}.git" . git fetch origin "${{ gitea.ref }}" --depth=50 git checkout "${{ gitea.sha }}" @@ -64,7 +64,7 @@ jobs: steps: - name: Checkout repository run: | - git clone --depth=50 "http://git.sysloggh.net/${{ gitea.repository }}.git" . + git clone --depth=50 "http://192.168.68.17:3000/${{ gitea.repository }}.git" . git fetch origin "${{ gitea.ref }}" --depth=50 git checkout "${{ gitea.sha }}" @@ -77,7 +77,7 @@ jobs: steps: - name: Checkout repository run: | - git clone --depth=50 "http://git.sysloggh.net/${{ gitea.repository }}.git" . + git clone --depth=50 "http://192.168.68.17:3000/${{ gitea.repository }}.git" . git fetch origin "${{ gitea.ref }}" --depth=50 git checkout "${{ gitea.sha }}"