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 426c0c5 commit 660a51cCopy full SHA for 660a51c
.github/workflows/release-npm.yaml renamed to .github/workflows/release-npm.yml
@@ -4,19 +4,22 @@ on:
4
push:
5
branches: [release/*]
6
7
+permissions:
8
+ id-token: write
9
+ contents: read
10
+
11
jobs:
12
publish-npm:
13
name: Publish NPM module
14
runs-on: ubuntu-latest
15
environment: Release
16
steps:
- - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
17
+ - uses: actions/checkout@v5
18
- uses: actions/setup-node@v5
19
with:
- node-version: '22'
20
+ node-version: '24.x'
21
cache: 'npm'
22
cache-dependency-path: package-lock.json
- - run: npm install-test
- - uses: cucumber/action-publish-npm@v1.1.1
- with:
- npm-token: ${{ secrets.NPM_TOKEN }}
23
+ registry-url: 'https://registry.npmjs.org'
24
+ - run: npm install-ci-test
25
+ - run: npm publish
0 commit comments