-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.releaserc.json
34 lines (34 loc) · 1000 Bytes
/
.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
{
"branches": [
{ "name": "master" },
{ "name": "staging", "prerelease": "rc" }
],
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/git",
"@semantic-release/github"
],
"prepare": [
{ "path": "@semantic-release/exec", "cmd": "./scripts/docs.sh" },
"@semantic-release/changelog",
"@semantic-release/npm",
{ "path": "@semantic-release/exec", "cmd": "pnpm run -- docker-release --tl --include_node false" },
"@semantic-release/git"
],
"publish": [
"@semantic-release/npm",
"@semantic-release/github"
],
"analyzeCommits": {
"preset": "angular",
"releaseRules": [
{ "type": "docs", "release": "patch" },
{ "type": "refactor", "release": "patch" },
{ "type": "style", "release": "patch" },
{ "type": "minor", "release": "minor" },
{ "type": "patch", "release": "patch" },
{ "type": "major", "release": "major" },
{ "type": "breaking", "release": "major" }
]
}
}