Skip to content

Commit b37227d

Browse files
committed
add support for Storybook 10.4 alpha
1 parent 3a5aa2b commit b37227d

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ name: Release
22

33
on: [push]
44

5+
permissions:
6+
contents: write
7+
issues: write
8+
pull-requests: write
9+
id-token: write
10+
511
jobs:
612
release:
713
runs-on: ubuntu-latest
@@ -11,8 +17,11 @@ jobs:
1117
with:
1218
fetch-depth: 0
1319

14-
- name: Setup Node
15-
uses: actions/setup-node@v3
20+
- name: Setup Node.js
21+
uses: actions/setup-node@v4
22+
with:
23+
node-version: 24
24+
registry-url: 'https://registry.npmjs.org'
1625

1726
- uses: pnpm/action-setup@v4
1827

@@ -25,5 +34,4 @@ jobs:
2534
- name: Release
2635
env:
2736
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2937
run: pnpm run release

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,14 @@
5555
"webpack": "^5.99.9"
5656
},
5757
"peerDependencies": {
58-
"storybook": "^10.0.0 || ^10.0.0-0 || ^10.1.0-0 || ^10.2.0-0 || ^10.3.0-0",
58+
"storybook": "^10.0.0 || ^10.0.0-0 || ^10.1.0-0 || ^10.2.0-0 || ^10.3.0-0 || ^10.4.0-0",
5959
"webpack": "^5.0.0"
6060
},
6161
"packageManager": "pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6",
6262
"publishConfig": {
63-
"access": "public"
63+
"access": "public",
64+
"provenance": true,
65+
"registry": "https://registry.npmjs.org/"
6466
},
6567
"storybook": {
6668
"displayName": "Styling-Webpack",

0 commit comments

Comments
 (0)