Skip to content

Commit fbbc424

Browse files
committed
Fix CI workflow git URL rewriting for dependencies
- Remove .git extension from insteadOf patterns - This allows the URL rewriting to work when Pkg constructs URLs without .git - Fixes DNS resolution errors for github-llmbench hostname
1 parent 40a0c21 commit fbbc424

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ jobs:
5959
chmod 600 ~/.ssh/config
6060
6161
# Configure git to use the appropriate hosts
62-
git config --global url."git@github-claudemcp:JuliaComputing/ClaudeMCPTools.jl.git".insteadOf "git@github.com:JuliaComputing/ClaudeMCPTools.jl.git"
63-
git config --global url."git@github-llmbench:JuliaComputing/LLMBenchSimple.jl.git".insteadOf "git@github.com:JuliaComputing/LLMBenchSimple.jl.git"
62+
git config --global url."git@github-claudemcp:JuliaComputing/ClaudeMCPTools.jl".insteadOf "git@github.com:JuliaComputing/ClaudeMCPTools.jl"
63+
git config --global url."git@github-llmbench:JuliaComputing/LLMBenchSimple.jl".insteadOf "git@github.com:JuliaComputing/LLMBenchSimple.jl"
6464
- uses: julia-actions/julia-buildpkg@v1
6565
with:
6666
git_cli: true

0 commit comments

Comments
 (0)