|
@@ -37,12 +37,13 @@ jobs:
|
|
|
steps:
|
|
|
- name: Setup Git LFS
|
|
|
run: |
|
|
|
+ # Install Git LFS
|
|
|
+ brew install git-lfs || echo "Failed to install via brew, trying alternative"
|
|
|
+
|
|
|
+ # Verify git version
|
|
|
git --version
|
|
|
- # Print current Git LFS status
|
|
|
- which git-lfs || echo "git-lfs not found"
|
|
|
- git lfs version || echo "git-lfs version failed"
|
|
|
|
|
|
- # Ensure Git LFS is initialized
|
|
|
+ # Initialize Git LFS
|
|
|
git lfs install
|
|
|
|
|
|
# Verify installation
|