fix(ci): install git-lfs explicitly before pull
Some checks failed
release / release (push) Failing after 1m30s

Disable checkout LFS smudge and install git-lfs on the runner before git lfs pull.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-06 14:47:00 +08:00
parent 97f5b6ec6e
commit ad85ba3c1c

View File

@@ -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: |