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 cdccf1a commit fe3c9f8Copy full SHA for fe3c9f8
1 file changed
.github/workflows/release.yml
@@ -8,14 +8,20 @@ on:
8
branches:
9
- main
10
11
+permissions:
12
+ contents: write
13
+ id-token: write
14
+ pull-requests: write
15
+
16
jobs:
17
release:
18
runs-on: ubuntu-latest
19
steps:
- - uses: actions/checkout@v3
- - uses: actions/setup-node@v3
20
+ - uses: actions/checkout@v4
21
+ - uses: actions/setup-node@v6
22
with:
- node-version: 20
23
+ node-version: 24
24
+ registry-url: https://registry.npmjs.org
25
- name: install
26
run: yarn
27
- name: test
@@ -27,5 +33,4 @@ jobs:
33
if: github.repository == 'immerjs/immer'
28
34
env:
29
35
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
31
- run: yarn semantic-release --branches main
36
+ run: npm semantic-release --branches main
0 commit comments