Skip to content

Commit

Permalink
fix: remove workspace protocol from package.json before installing de…
Browse files Browse the repository at this point in the history
…pendencies
  • Loading branch information
ctwhome committed Jan 17, 2025
1 parent 3f548b3 commit c48c00d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/publish-ctw-kit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,10 @@ jobs:
bun-version: latest

- name: Install dependencies
run: bun install
run: |
# Remove workspace protocol from package.json
sed -i 's/"workspace:\*"/"*"/g' package.json
bun install
- name: Build
run: bun run build
Expand Down

0 comments on commit c48c00d

Please sign in to comment.