From dbf50fa9d32607a17486180abdc91f859ad1a243 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Magnus=20Le=C3=9Fmann=20=28=40MarkL4YG=29?= Date: Sun, 20 Apr 2025 22:12:58 +0200 Subject: [PATCH] ci: Configure proxies directly in Git --- .forgejo/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index e89490d..ddd4fc9 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -17,6 +17,10 @@ jobs: build: runs-on: ubuntu-24.04 steps: + - name: Configure proxies + run: | + git config --global http.proxy "$HTTP_PROXY" + git config --global https.proxy "$HTTPS_PROXY" - uses: https://code.forgejo.org/actions/checkout@v4 with: fetch-depth: 0