From a93b67185ca22d811a44dc8feb01b800cbfb5b4c Mon Sep 17 00:00:00 2001 From: Wang Zhuoxuan Date: Fri, 17 Apr 2026 11:51:39 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20CI=20checkout=20=E5=A4=B1=E8=B4=A5?= =?UTF-8?q?=EF=BC=8C=E5=9C=A8=20checkout=20=E5=89=8D=E5=AE=89=E8=A3=85=20g?= =?UTF-8?q?it=20=E9=81=BF=E5=85=8D=E4=B8=8D=E5=85=BC=E5=AE=B9=E7=9A=84=20R?= =?UTF-8?q?EST=20API=20=E5=9B=9E=E9=80=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/deploy.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 9fad3af..6004c36 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -20,6 +20,9 @@ jobs: name: Code Quality runs-on: ubuntu-latest steps: + - name: Install git + run: apk add --no-cache git + - name: Checkout code uses: actions/checkout@v4 @@ -41,6 +44,9 @@ jobs: runs-on: ubuntu-latest needs: quality steps: + - name: Install git + run: apk add --no-cache git + - name: Checkout code uses: actions/checkout@v4 @@ -66,6 +72,9 @@ jobs: needs: [quality, test] if: github.ref == 'refs/heads/develop' steps: + - name: Install git + run: apk add --no-cache git + - name: Checkout code uses: actions/checkout@v4 @@ -89,6 +98,9 @@ jobs: needs: [quality, test] if: github.ref == 'refs/heads/main' steps: + - name: Install git + run: apk add --no-cache git + - name: Checkout code uses: actions/checkout@v4