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

@@ -32,6 +32,7 @@ jobs:
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
lfs: true
- name: Setup Node.js
uses: actions/setup-node@v4
@@ -190,6 +191,7 @@ jobs:
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
lfs: true
- name: Setup Node.js
uses: actions/setup-node@v4