From ad85ba3c1c8043ee5ad9cb41ad6509ae1563b3c4 Mon Sep 17 00:00:00 2001 From: chendelian <116870791@qq.com> Date: Sat, 6 Jun 2026 14:47:00 +0800 Subject: [PATCH] fix(ci): install git-lfs explicitly before pull Disable checkout LFS smudge and install git-lfs on the runner before git lfs pull. Co-authored-by: Cursor --- .gitea/workflows/release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 808b525..d7c50c0 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -13,7 +13,12 @@ jobs: - name: Checkout uses: actions/checkout@v4 with: - lfs: true + lfs: false + + - name: Install Git LFS + run: | + sudo apt-get update + sudo apt-get install -y git-lfs - name: Pull Git LFS run: |