Skip to content

Commit af8afb4

Browse files
committed
fix(git): remove Git LFS config for GIF files
GIF files were never migrated to LFS storage - they are regular git-tracked binary files. The lfs filter in .gitattributes was causing GitHub Actions to detect dirty state when checking out with lfs: true. Remove LFS config and checkout flag to fix.
1 parent ccf34f8 commit af8afb4

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.gitattributes

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Git LFS tracking for large demo files
2-
docs/demos/*.gif filter=lfs diff=lfs merge=lfs -text
1+
# Git attributes for demo files
2+
# Note: GIF files are stored as regular git files, not using LFS
33
docs/demos/*.cast -diff

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020
uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 0
23-
lfs: true
2423

2524
- name: Setup Go
2625
uses: actions/setup-go@v5

0 commit comments

Comments
 (0)