We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 228f0c5 commit 597470cCopy full SHA for 597470c
2 files changed
.github/workflows/main.yml
@@ -19,14 +19,17 @@ jobs:
19
release:
20
runs-on: ubuntu-latest
21
needs: test
22
+ permissions: write-all
23
steps:
24
- uses: actions/checkout@v4
25
with:
26
fetch-depth: 0
27
+ token: ${{ secrets.GITHUB_TOKEN }}
28
- uses: actions/setup-node@v4
29
30
node-version-file: .node-version
31
cache: npm
32
+ - run: npm i -g npm@latest
33
- run: npm ci
34
- run: npm run semantic-release
35
env:
package.json
@@ -30,6 +30,11 @@
"import": "./dist/index.mjs"
}
},
+ "publishConfig": {
+ "access": "public",
+ "provenance": true,
36
+ "registry": "https://registry.npmjs.org/"
37
+ },
38
"scripts": {
39
"build": "unbuild",
40
"stub": "unbuild --stub",
0 commit comments