Skip to content

Commit

Permalink
feat(workflow): add rollup install step to release workflow
Browse files Browse the repository at this point in the history
fix: `pnpm run release` failing on create-bedframe build command.
either global install in ci or npx it?
  • Loading branch information
JoeyDoey authored Jun 12, 2023
1 parent 42dfdb3 commit 5ca82ab
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5ca82ab

Please sign in to comment.