Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ permissions:

env:
BUN_VERSION: 'latest'
PNPM_VERSION: '10.10.0'
NODE_VERSION: '22'

jobs:
Expand All @@ -27,6 +28,11 @@ jobs:
with:
token: ${{ secrets.PAT_GITHUB_TOKEN }}

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: ${{ env.PNPM_VERSION }}

- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build": "turbo run build",
"changeset": "changeset",
"version": "changeset version",
"release": "bun run clean && bun run build && changeset publish",
"release": "bun run clean && bun run build && sed -i.bak 's/\"bun@[^\"]*\"/\"pnpm@10.10.0\"/' package.json && changeset publish; rc=$?; mv package.json.bak package.json; exit $rc",
"test": "turbo run test",
"test:watch": "bun test --watch packages/ apps/",
"test:e2e": "bun test --timeout 300000 e2e/",
Expand Down