fix(ci): install rsync in CI container
Some checks failed
Deploy Frontend / build-and-deploy (push) Failing after 4m48s

The node:20-bookworm image doesn't include rsync which is needed
for the sync-schemas npm script.
This commit is contained in:
kempersc 2026-01-11 17:02:24 +01:00
parent 29ef609465
commit e94b58a289

View file

@ -61,6 +61,9 @@ jobs:
working-directory: frontend
run: pnpm install --frozen-lockfile
- name: Install rsync
run: apt-get update && apt-get install -y rsync
- name: Sync LinkML schemas to frontend
working-directory: frontend
run: pnpm run sync-schemas