From 5ca82ab1b743ef709d5bd38848388fe0a3129ad3 Mon Sep 17 00:00:00 2001 From: Joe Nyaggah Date: Mon, 12 Jun 2023 09:47:11 -0700 Subject: [PATCH] feat(workflow): add rollup install step to release workflow fix: `pnpm run release` failing on create-bedframe build command. either global install in ci or npx it? --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9e230fec..34e9df44 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,10 @@ jobs: node-version: 16.x - name: Install pnpm - run: npm install -g pnpm + run: npm install -g pnpm + + - name: Install rollup + run: npm install -g rollup - name: Install Dependencies run: pnpm install