We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 404f784 commit 95833c6Copy full SHA for 95833c6
.github/workflows/publish.yml
@@ -4,23 +4,28 @@ on:
4
workflow_dispatch:
5
inputs:
6
bump:
7
- description: 'Version bump type'
+ description: "Version bump type"
8
required: false
9
- default: 'patch'
+ default: "patch"
10
+
11
+permissions:
12
+ id-token: write
13
+ contents: read
14
15
jobs:
16
publish:
17
runs-on: ubuntu-latest
18
steps:
19
- uses: actions/checkout@v4
-
20
21
- uses: actions/setup-node@v4
22
with:
- node-version: '20'
- registry-url: 'https://registry.npmjs.org'
23
+ node-version: "24"
24
+ registry-url: "https://registry.npmjs.org"
25
26
- run: npm install
27
28
- run: npm publish --access public
29
env:
30
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
31
+ NPM_CONFIG_PROVENANCE: false
0 commit comments