-
Notifications
You must be signed in to change notification settings - Fork 5
/
.releaserc.json
32 lines (32 loc) · 1.02 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
{
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": [
{
"path": "docs/_static/schemas/queenbee.json",
"label": "Queenbee schema"
},
{
"path": "docs/_static/schemas/queenbee_inheritance.json",
"label": "Queenbee schema with inheritance"
},
{
"path": "docs/_static/schemas/queenbee_mapper.json",
"label": "Queenbee schema mapper"
}
]
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "poetry run python3 scripts/gen_schemas.py --version ${nextRelease.version}",
"publishCmd": "bash scripts/deploy.sh"
}
]
]
}