-
Notifications
You must be signed in to change notification settings - Fork 6
/
.releaserc.json
40 lines (40 loc) · 1.28 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
35
36
37
38
39
40
{
"branches": ["master"],
"plugins": [
[
"@semantic-release/commit-analyzer", {
"preset": "conventionalcommits",
"releaseRules": [
{"breaking": true, "release": "major"},
{"revert": true, "release": "patch"},
{"type": "feat", "release": "minor"},
{"type": "fix", "release": "patch"},
{"type": "perf", "release": "patch"},
{"type": "build", "release": "patch"},
{"type": "ci", "release": "patch"},
{"type": "docs", "release": "patch"}
]
}
],
["./scripts/semantic-release-helm", {
"charts": "helm/{charts,deploy}/*"
}],
["./scripts/semantic-release-installation-guide-yaml", {
"files": "technical-docs/nlx-helm-installation-guide/*.{yml,yaml}"
}],
["@semantic-release/exec", {
"prepareCmd": "./scripts/update-conditional-helm-deps.sh"
}],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/gitlab",
["@semantic-release/git", {
"message": "release: ${nextRelease.version}\n\n${nextRelease.notes}",
"assets": [
"technical-docs/nlx-helm-installation-guide/*.{yml,yaml}",
"helm/{charts,deploy}/*/Chart.{yaml,lock}",
"CHANGELOG.md"
]
}]
]
}