From f377e75ecb3738a825bb1436da8cd655344f31f7 Mon Sep 17 00:00:00 2001 From: yinxiaolong Date: Thu, 23 Jul 2026 18:19:03 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=E6=9B=B4=E6=96=B0=E4=BB=A3=E7=90=86?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E5=9C=B0=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将 HTTP 和 HTTPS 代理从 10.255.0.1 更 --- .github/workflows/deploy.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5079685..c5c8e27 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -9,8 +9,10 @@ jobs: build: runs-on: ubuntu-latest env: - http_proxy=http://host.docker.internal:7890 - https_proxy=http://host.docker.internal:7890 + HTTP_PROXY: http://10.255.0.1:7890 + HTTPS_PROXY: http://10.255.0.1:7890 + http_proxy: http://10.255.0.1:7890 + https_proxy: http://10.255.0.1:7890 steps: # - name: Checkout # uses: actions/checkout@v4 @@ -19,7 +21,7 @@ jobs: # uses: pnpm/action-setup@v4 - name: test - run: curl -x localhost:7890 ip.sb + run: curl -x 127.0.0.1:7890 ip.sb # # - name: Install dependencies # run: pnpm install