From bf67e1c54b84caa9f569ccd5d838643fa50eaa66 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Tue, 31 Mar 2026 15:46:13 -0300 Subject: [PATCH] fix(ci): Remove hosts entry and simplify git setup --- .forgejo/workflows/botui.yaml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.forgejo/workflows/botui.yaml b/.forgejo/workflows/botui.yaml index 5bff2cf..7c1ce4d 100644 --- a/.forgejo/workflows/botui.yaml +++ b/.forgejo/workflows/botui.yaml @@ -16,17 +16,10 @@ jobs: runs-on: gbo steps: - - name: Disable SSL verification + - name: Setup Git run: | git config --global http.sslVerify false git config --global --add safe.directory "*" - # Remove ALL git url replacements that redirect to internal IPs - git config --global --list | grep -E "^url\..*\.insteadof" | while read line; do - key=$(echo "$line" | cut -d= -f1) - git config --global --unset-all "$key" 2>/dev/null || true - done - # Ensure hosts entry for alm in CI container (required for DNS) - echo "10.157.134.241 alm.pragmatismo.com.br" >> /etc/hosts - name: Setup Workspace run: |