From e94b58a2898af5d7330acd14333a22b9ea323925 Mon Sep 17 00:00:00 2001 From: kempersc Date: Sun, 11 Jan 2026 17:02:24 +0100 Subject: [PATCH] fix(ci): install rsync in CI container The node:20-bookworm image doesn't include rsync which is needed for the sync-schemas npm script. --- .forgejo/workflows/deploy-frontend.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.forgejo/workflows/deploy-frontend.yml b/.forgejo/workflows/deploy-frontend.yml index a56f8b42ab..50dfd1aea9 100644 --- a/.forgejo/workflows/deploy-frontend.yml +++ b/.forgejo/workflows/deploy-frontend.yml @@ -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