From ac2843a3f84ae7024a79dabd0a314f1166b36414 Mon Sep 17 00:00:00 2001 From: Wang Zhuoxuan Date: Fri, 17 Apr 2026 11:54:34 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BD=BF=E7=94=A8=20apt-get=20=E5=AE=89?= =?UTF-8?q?=E8=A3=85=20git=EF=BC=88oven/bun=20=E5=9F=BA=E4=BA=8E=20Debian?= =?UTF-8?q?=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 6004c36..06b5c26 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Install git - run: apk add --no-cache git + run: apt-get update && apt-get install -y git - name: Checkout code uses: actions/checkout@v4 @@ -45,7 +45,7 @@ jobs: needs: quality steps: - name: Install git - run: apk add --no-cache git + run: apt-get update && apt-get install -y git - name: Checkout code uses: actions/checkout@v4 @@ -73,7 +73,7 @@ jobs: if: github.ref == 'refs/heads/develop' steps: - name: Install git - run: apk add --no-cache git + run: apt-get update && apt-get install -y git - name: Checkout code uses: actions/checkout@v4 @@ -99,7 +99,7 @@ jobs: if: github.ref == 'refs/heads/main' steps: - name: Install git - run: apk add --no-cache git + run: apt-get update && apt-get install -y git - name: Checkout code uses: actions/checkout@v4