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 36654e3 commit 76980fbCopy full SHA for 76980fb
.github/workflows/publish.yml
@@ -30,5 +30,5 @@ jobs:
30
run: yarn build
31
- name: Release
32
run: yarn release
33
- - name: Publish to npm
34
- run: npm publish
+ env:
+ NPM_CONFIG_PROVENANCE: true
.releaserc.json
@@ -10,7 +10,20 @@
10
"plugins": [
11
"@semantic-release/commit-analyzer",
12
"@semantic-release/release-notes-generator",
13
+ [
14
+ "@semantic-release/npm",
15
+ {
16
+ "npmPublish": true,
17
+ "pkgRoot": "."
18
+ }
19
+ ],
20
"@semantic-release/github",
- "@semantic-release/git"
21
22
+ "@semantic-release/git",
23
24
+ "assets": ["package.json"],
25
+ "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
26
27
+ ]
28
]
29
}
0 commit comments