File tree Expand file tree Collapse file tree 1 file changed +58
-0
lines changed
Expand file tree Collapse file tree 1 file changed +58
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "branches" : [
3+ " main" ,
4+ {
5+ "name" : " pre/*" ,
6+ "prerelease" : true
7+ }
8+ ],
9+ "plugins" : [
10+ [
11+ " @semantic-release/commit-analyzer" ,
12+ {
13+ "preset" : " conventionalcommits"
14+ }
15+ ],
16+ [
17+ " @semantic-release/release-notes-generator" ,
18+ {
19+ "preset" : " conventionalcommits"
20+ }
21+ ],
22+ [
23+ " @semantic-release/changelog" ,
24+ {
25+ "changelogFile" : " CHANGELOG.md"
26+ }
27+ ],
28+ [
29+ " semantic-release-pypi" ,
30+ {
31+ "distDir" : " dist/"
32+ }
33+ ],
34+ [
35+ " @semantic-release/github" ,
36+ {
37+ "assets" : [
38+ {
39+ "path" : " dist/*.tar.gz" ,
40+ "label" : " Source distribution"
41+ },
42+ {
43+ "path" : " dist/*.whl" ,
44+ "label" : " Python wheel"
45+ }
46+ ]
47+ }
48+ ],
49+ [
50+ " @semantic-release/git" ,
51+ {
52+ "assets" : [" CHANGELOG.md" ],
53+ "message" : " chore(release): ${nextRelease.version} [skip ci]\n\n ${nextRelease.notes}"
54+ }
55+ ]
56+ ]
57+ }
58+
You can’t perform that action at this time.
0 commit comments