fix(ci): pull git lfs after checkout before building zip
Some checks failed
release / release (push) Failing after 45s

Add git lfs pull step with mp3 size/header diagnostics before packaging.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-06 15:35:57 +08:00
parent 83d444b1c2
commit c0f946fd51

View File

@@ -18,6 +18,19 @@ jobs:
- name: Checkout
uses: https://git.jc2009.com/admin/actions-checkout@v4
- name: Pull Git LFS
run: |
set -e
git lfs install
git lfs pull
echo "Music files after git lfs pull:"
find music -type f -name "*.mp3" -exec ls -lh {} \;
echo "MP3 file headers:"
find music -type f -name "*.mp3" -exec sh -c 'echo "---- $1"; head -c 80 "$1"; echo' _ {} \;
- name: Show workspace
run: |
pwd