From 3986c5919c3ebafe0fbf43ce7b7c43d55314dba2 Mon Sep 17 00:00:00 2001 From: SpecialX <47072643+wangxiner55@users.noreply.github.com> Date: Wed, 25 Feb 2026 13:42:41 +0800 Subject: [PATCH] chore: inject proxy envs for ci --- .gitea/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c2210fd..a7695e0 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -16,6 +16,12 @@ jobs: env: SKIP_ENV_VALIDATION: "1" NEXT_TELEMETRY_DISABLED: "1" + http_proxy: http://127.0.0.1:7890 + https_proxy: http://127.0.0.1:7890 + no_proxy: localhost,127.0.0.1,192.168.31.94,172.17.0.1,internal.domain + HTTP_PROXY: http://127.0.0.1:7890 + HTTPS_PROXY: http://127.0.0.1:7890 + NO_PROXY: localhost,127.0.0.1,192.168.31.94,172.17.0.1,internal.domain steps: - name: Checkout