We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8454a0 commit ed86311Copy full SHA for ed86311
.github/workflows/release.yml
@@ -7,6 +7,7 @@ on:
7
8
permissions:
9
contents: write
10
+ id-token: write
11
12
jobs:
13
release:
@@ -17,16 +18,14 @@ jobs:
17
18
- name: Install NodeJS
19
uses: actions/setup-node@v4
20
with:
- node-version: 18
21
+ node-version: 24
22
registry-url: 'https://registry.npmjs.org/'
23
- name: Install dependencies
24
run: npm install
25
- name: Build project
26
run: npm run rollup
27
- name: Publish to npm
- env:
28
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
29
- run: npm publish --access public
+ run: npm publish --provenance --access public
30
- name: Get Info
31
run: |
32
echo "version=$(grep -Eo '[0-9]+(\.[0-9]+)+' CHANGELOG.md | head -n 1)" >> $GITHUB_OUTPUT
0 commit comments