From 459b950ab624827150b4d78c97d39c9cc101994f Mon Sep 17 00:00:00 2001 From: Shantur Rathore Date: Fri, 21 Nov 2025 14:58:33 +0000 Subject: [PATCH] Install rollup native binary before server publish --- .github/workflows/dev-release.yml | 3 +++ .github/workflows/release.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/dev-release.yml b/.github/workflows/dev-release.yml index 8dc5df9c..615e3396 100644 --- a/.github/workflows/dev-release.yml +++ b/.github/workflows/dev-release.yml @@ -78,6 +78,9 @@ jobs: - name: Install dependencies run: npm ci --workspaces + - name: Ensure rollup native binary + run: npm install @rollup/rollup-linux-x64-gnu --no-save + - name: Build server package run: npm run build --workspace @neuralnomads/codenomad diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2388c33b..68d3c573 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -91,6 +91,9 @@ jobs: - name: Install dependencies run: npm ci --workspaces + - name: Ensure rollup native binary + run: npm install @rollup/rollup-linux-x64-gnu --no-save + - name: Build server package run: npm run build --workspace @neuralnomads/codenomad