Skip to content
This repository was archived by the owner on May 7, 2026. It is now read-only.
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ jobs:
- name: Build
run: pnpm build

- name: Publish any commit / build for testing
shell: bash
run: pnpm release.pkg-pr-new
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Create Release Pull Request or Publish
if: github.ref == 'refs/heads/main'
id: changesets
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"playground": "MODE=dev pnpm --filter playground dev",
"build": "tsx scripts/build-devtools.ts",
"change": "changeset",
"release": "changeset version"
"release": "changeset version",
"release.pkg-pr-new": "cd packages/devtools && pnpm dlx pkg-pr-new publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
Expand Down
Loading