-
Notifications
You must be signed in to change notification settings - Fork 4
/
.releaserc.json
34 lines (34 loc) · 1 KB
/
.releaserc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"successComment": false,
"failTitle": false,
"assets": [
{
"path": "docs/model.json",
"label": "Model schema"
},
{
"path": "docs/model_inheritance.json",
"label": "Model schema with inheritance"
},
{
"path": "docs/model_mapper.json",
"label": "Model schema mapper"
}
]
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "python docs.py --version ${nextRelease.version}",
"publishCmd": "bash deploy.sh"
}
]
]
}