We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de4adfe commit 72e9a4fCopy full SHA for 72e9a4f
.github/workflows/ci.yml
@@ -40,6 +40,12 @@ jobs:
40
- name: Build
41
run: pnpm build
42
43
+ - name: Publish any commit / build for testing
44
+ shell: bash
45
+ run: pnpm release.pkg-pr-new
46
+ env:
47
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48
+
49
- name: Create Release Pull Request or Publish
50
if: github.ref == 'refs/heads/main'
51
id: changesets
package.json
@@ -7,7 +7,8 @@
7
"playground": "MODE=dev pnpm --filter playground dev",
8
"build": "tsx scripts/build-devtools.ts",
9
"change": "changeset",
10
- "release": "changeset version"
+ "release": "changeset version",
11
+ "release.pkg-pr-new": "cd packages/devtools && pnpm dlx pkg-pr-new publish"
12
},
13
"devDependencies": {
14
"@changesets/cli": "^2.27.11",
0 commit comments