We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02c9c7a commit 957656aCopy full SHA for 957656a
1 file changed
.github/workflows/publish.yml
@@ -3,8 +3,10 @@ name: Publish to npm
3
on:
4
push:
5
tags:
6
- - '*'
7
- workflow_dispatch:
+ - "*"
+permissions:
8
+ id-token: write # Required for OIDC
9
+ contents: read
10
11
jobs:
12
publish:
@@ -17,8 +19,8 @@ jobs:
17
19
- name: Setup Node.js
18
20
uses: actions/setup-node@v4
21
with:
- node-version: '20'
- registry-url: 'https://registry.npmjs.org'
22
+ node-version: "20"
23
+ registry-url: "https://registry.npmjs.org"
24
25
- name: Get version from tag
26
id: version
0 commit comments