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