Skip to content

Commit a866c53

Browse files
committed
Fix release.yaml
1 parent 10d3e5a commit a866c53

1 file changed

Lines changed: 6 additions & 9 deletions

File tree

.github/workflows/release.yaml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
version-check:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v6
1111
- name: Install stable Rust
1212
uses: actions-rs/toolchain@v1
1313
with:
@@ -116,13 +116,10 @@ jobs:
116116
run:
117117
working-directory: ./node
118118
steps:
119-
- uses: actions/checkout@v4
120-
# Setup .npmrc file to publish to npm
121-
- uses: actions/setup-node@v4
119+
- uses: actions/checkout@v6
120+
- uses: actions/setup-node@v6
122121
with:
123-
node-version: '20.x'
122+
node-version: '24'
124123
registry-url: 'https://registry.npmjs.org'
125-
- run: npm i
126-
- run: npm publish --access public
127-
env:
128-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
124+
- run: npm ci
125+
- run: npm publish

0 commit comments

Comments
 (0)