You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/release.yml
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -17,15 +17,17 @@ jobs:
17
17
# registry-url is required for releasing packages
18
18
registry-url: "https://registry.npmjs.org"
19
19
20
+
- name: Install latest npm cli
21
+
run: npm install -g npm@latest
22
+
20
23
- name: npm install
21
24
run: npm ci
22
25
23
26
- name: build
24
27
run: npm run build
25
28
26
29
- name: Publish package
27
-
# --provenance enables the automatic generation of provenance statements
30
+
# --provenance enables the automatic generation of provenance statements (when using trusted publisher, this is automatically enabled and therefore optional)
28
31
# --access public is only hard required for the initial release, but it doesn't hurt having it setup
32
+
# npm version >=11.5.1 required for trusted publisher
0 commit comments