fix: enable Git LFS checkout in GitHub Actions workflows

- Added 'lfs: true' to all checkout steps in workflows
- Ensures Docker builds get the actual database file, not LFS pointer
- Required after migrating nodes.db to Git LFS
This commit is contained in:
czlonkowski
2025-07-06 14:02:12 +02:00
parent 67e28320d5
commit bfedadc6ef
3 changed files with 6 additions and 0 deletions

View File

@@ -27,6 +27,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: true
- name: Set up QEMU
uses: docker/setup-qemu-action@v3