fix(ci): install rsync in CI container
Some checks failed
Deploy Frontend / build-and-deploy (push) Failing after 4m48s
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:
parent
29ef609465
commit
e94b58a289
1 changed files with 3 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue