ci: update Hugging Face deployment workflow and include test fixture and remove PDFs in repository
Browse files- .github/workflows/deploy.yml +0 -1
- .gitignore +3 -0
.github/workflows/deploy.yml
CHANGED
|
@@ -29,7 +29,6 @@ jobs:
|
|
| 29 |
- uses: actions/checkout@v4
|
| 30 |
with:
|
| 31 |
fetch-depth: 0
|
| 32 |
-
lfs: true
|
| 33 |
|
| 34 |
- name: Push to Hugging Face Spaces
|
| 35 |
env:
|
|
|
|
| 29 |
- uses: actions/checkout@v4
|
| 30 |
with:
|
| 31 |
fetch-depth: 0
|
|
|
|
| 32 |
|
| 33 |
- name: Push to Hugging Face Spaces
|
| 34 |
env:
|
.gitignore
CHANGED
|
@@ -52,6 +52,9 @@ backend/uploads/
|
|
| 52 |
data/
|
| 53 |
!data/**/.gitkeep
|
| 54 |
|
|
|
|
|
|
|
|
|
|
| 55 |
# Coverage
|
| 56 |
coverage/
|
| 57 |
.coverage
|
|
|
|
| 52 |
data/
|
| 53 |
!data/**/.gitkeep
|
| 54 |
|
| 55 |
+
# Test fixture PDFs — large binaries, not needed at runtime on HF Spaces
|
| 56 |
+
backend/tests/fixtures/
|
| 57 |
+
|
| 58 |
# Coverage
|
| 59 |
coverage/
|
| 60 |
.coverage
|