Skip to content

Commit d3a835c

Browse files
committed
release fixes
1 parent 3cf845b commit d3a835c

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.changeset/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"commit": false,
55
"fixed": [],
66
"linked": [],
7-
"access": "restricted",
7+
"access": "public",
88
"baseBranch": "main",
99
"updateInternalDependencies": "patch",
1010
"ignore": []

.github/workflows/release.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,20 @@ jobs:
1919
- name: Setup pnpm
2020
uses: pnpm/action-setup@v4
2121
with:
22-
version: 10
23-
22+
version: 10.12.4
2423
- name: Setup Node
2524
uses: actions/setup-node@v4
2625
with:
2726
node-version: 20
27+
cache: 'pnpm'
28+
registry-url: 'https://registry.npmjs.org'
2829

2930
- name: Install deps
3031
run: pnpm install --frozen-lockfile
3132

33+
- name: Build
34+
run: pnpm build
35+
3236
- name: Create Release PR or Publish
3337
uses: changesets/action@v1
3438
with:
@@ -37,5 +41,4 @@ jobs:
3741
env:
3842
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3943
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
40-
41-
44+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)