From 02a50617e7d95a9ffcb13c3da63b7ddad9e1e403 Mon Sep 17 00:00:00 2001 From: Wang Zhuoxuan Date: Fri, 17 Apr 2026 13:49:13 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=E7=A7=BB=E9=99=A4=20Install=20git=20?= =?UTF-8?q?=E6=AD=A5=E9=AA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 改用自定义镜像 duoqi-runner:bun-git(预装 git),无需每次 CI 安装。 --- .gitea/workflows/deploy.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 1861d5d..0738051 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -20,9 +20,6 @@ jobs: name: Code Quality runs-on: ubuntu-latest steps: - - name: Install git - run: apt-get update && apt-get install -y git - - name: Checkout code uses: actions/checkout@v4 @@ -38,9 +35,6 @@ jobs: runs-on: ubuntu-latest needs: quality steps: - - name: Install git - run: apt-get update && apt-get install -y git - - name: Checkout code uses: actions/checkout@v4 @@ -63,9 +57,6 @@ jobs: needs: [quality, test] if: github.ref == 'refs/heads/develop' steps: - - name: Install git - run: apt-get update && apt-get install -y git - - name: Checkout code uses: actions/checkout@v4 @@ -89,9 +80,6 @@ jobs: needs: [quality, test] if: github.ref == 'refs/heads/main' steps: - - name: Install git - run: apt-get update && apt-get install -y git - - name: Checkout code uses: actions/checkout@v4