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 e4f6233 commit 2eb8646Copy full SHA for 2eb8646
1 file changed
.github/workflows/release.yml
@@ -1,5 +1,9 @@
1
name: Release
2
3
+permissions:
4
+ id-token: write
5
+ contents: read
6
+
7
on:
8
workflow_dispatch: ~
9
push:
@@ -24,6 +28,7 @@ jobs:
24
28
with:
25
29
node-version: 22
26
30
cache: "pnpm"
31
+ registry-url: "https://registry.npmjs.org"
27
32
33
- name: Install dependencies
34
run: pnpm install --frozen-lockfile
@@ -41,6 +46,6 @@ jobs:
41
46
run: pnpm build
42
47
43
48
- name: Publish to npm
44
- run: pnpm publish --no-git-checks
45
49
env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
50
+ npm_config_devEngines: ""
51
+ run: npm publish --provenance --access public
0 commit comments