From ac69e665f2427145f47a657848874966d32b6c05 Mon Sep 17 00:00:00 2001 From: guocheng Date: Wed, 29 Jul 2026 16:31:44 +0800 Subject: [PATCH] =?UTF-8?q?=E6=98=BE=E7=A4=BA=E6=8C=87=E5=AE=9Aactions?= =?UTF-8?q?=E4=BB=93=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/deploy.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 14d63bb..bea979e 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -15,14 +15,17 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: https://gitee.com/actions-mirror/checkout@v4 - name: Setup Python - uses: actions/setup-python@v5 + uses: https://gitee.com/actions-mirror/setup-python@v5 with: python-version: "3.11" cache: pip + - name: Configure pip mirror + run: pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple + - name: Install dependencies run: pip install --retries 3 -r requirements.txt