From edae49aeefd701cd84617b1f1d82ff97f723faa4 Mon Sep 17 00:00:00 2001 From: phoenix Date: Fri, 29 May 2026 18:37:20 -0400 Subject: [PATCH 1/2] Updated dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c2556bf..8effff8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,8 @@ RUN mkdir -p -m 0700 ~/.ssh && \ ssh-keyscan git.kundeng.us >> ~/.ssh/known_hosts # Configure Git to use SSH for GitHub -RUN git config --global url."ssh://git@git.kundeng.us".insteadOf "https://git.kundeng.us" +RUN git config --global url."git@git.kundeng.us:".insteadOf "https://git.kundeng.us/" && \ + git config --global url."git@git.kundeng.us:".insteadOf "http://git.kundeng.us/" # Set up the Go environment for private modules ENV GOPRIVATE=git.kundeng.us -- 2.47.3 From bf6a2e410fd9373e20a1d88fd1d092db2870cc61 Mon Sep 17 00:00:00 2001 From: phoenix Date: Fri, 29 May 2026 18:48:10 -0400 Subject: [PATCH 2/2] Updated workflow --- .gitea/workflows/workflow.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/workflow.yaml b/.gitea/workflows/workflow.yaml index 494fba8..6cfc2d9 100644 --- a/.gitea/workflows/workflow.yaml +++ b/.gitea/workflows/workflow.yaml @@ -36,6 +36,8 @@ jobs: cat > ~/.gitconfig << "EOF" [url "ssh://git@${{ secrets.GIT_HOST_ROOT }}"] insteadOf = https://${{ secrets.GIT_HOST_ROOT }} + [url "ssh://git@${{ secrets.GIT_HOST_ROOT }}"] + insteadOf = http://${{ secrets.GIT_HOST_ROOT }} EOF make build -- 2.47.3