Skip to content

Commit 8556377

Browse files
committed
chore: remove Git LFS, store binary files directly in Git
All PNG/TTF/OTF files are small (<400 KB each, ~9 MB total) and don't benefit from LFS. Removes LFS tracking to eliminate growing storage costs on GitHub. Also removes lfs: true from all CI workflows.
1 parent c28674b commit 8556377

4 files changed

Lines changed: 4 additions & 11 deletions

File tree

.gitattributes

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
*.png filter=lfs diff=lfs merge=lfs -text
2-
*.ttf filter=lfs diff=lfs merge=lfs -text
3-
*.otf filter=lfs diff=lfs merge=lfs -text
4-
*.png !text !filter !merge !diff
5-
*.ttf !text !filter !merge !diff
6-
*.otf !text !filter !merge !diff
1+
# Binary files - mark as binary for correct diff/merge
2+
*.png binary
3+
*.ttf binary
4+
*.otf binary

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v4
2121
with:
22-
lfs: true
2322

2423
- name: Setup .NET
2524
uses: actions/setup-dotnet@v4

.github/workflows/playground.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ jobs:
3232
steps:
3333
- uses: actions/checkout@v4
3434
with:
35-
lfs: true
3635

3736
- name: Setup .NET
3837
uses: actions/setup-dotnet@v4

.github/workflows/release.yml

Lines changed: 0 additions & 3 deletions
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 .NET
2625
uses: actions/setup-dotnet@v4
@@ -37,7 +36,6 @@ jobs:
3736
- uses: actions/checkout@v4
3837
with:
3938
fetch-depth: 0
40-
lfs: true
4139

4240
- name: Setup .NET
4341
uses: actions/setup-dotnet@v4
@@ -131,7 +129,6 @@ jobs:
131129
- uses: actions/checkout@v4
132130
with:
133131
fetch-depth: 0
134-
lfs: true
135132

136133
- name: Setup .NET
137134
uses: actions/setup-dotnet@v4

0 commit comments

Comments
 (0)