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 cccd318 commit ee5b3a4Copy full SHA for ee5b3a4
.github/workflows/CI.yml
@@ -90,6 +90,9 @@ jobs:
90
if: startsWith(github.ref, 'refs/tags/')
91
runs-on: ubuntu-latest
92
needs: build
93
+ permissions:
94
+ contents: read
95
+ id-token: write
96
steps:
97
- name: Merge Artifacts
98
uses: actions/upload-artifact/merge@v4
@@ -129,6 +132,7 @@ jobs:
129
132
uses: actions/setup-node@v4
130
133
with:
131
134
node-version-file: ".nvmrc"
135
+ registry-url: 'https://registry.npmjs.org'
136
137
- name: Setup Pnpm
138
uses: pnpm/action-setup@v4
@@ -137,6 +141,6 @@ jobs:
141
run: pnpm install
142
139
143
- name: Publish to npm
140
- run: npm publish
144
+ run: npm publish --provenance --access public
145
env:
146
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments