-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.releaserc
85 lines (84 loc) · 2.29 KB
/
.releaserc
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"branches": ["main"],
"repositoryUrl": "https://github.com/csye7125-su24-team7/helm-cve-operator",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"semantic-release-helm",
{
"chartPath": "operator",
"onlyUpdateVersion": true
}
],
[
"semantic-release-helm",
{
"chartPath": "githubreleasesmonitor-sample",
"onlyUpdateVersion": true
}
],
[
"@semantic-release/git",
{
"assets": [
{"path": "operator/Chart.yaml"},
{"path": "operator/CHANGELOG.md"},
{"path": "githubreleasesmonitor-sample/Chart.yaml"},
{"path": "githubreleasesmonitor-sample/CHANGELOG.md"}
]
}
],
"@semantic-release/github"
],
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/git"
],
"analyzeCommits": [
"@semantic-release/commit-analyzer"
],
"generateNotes": [
"@semantic-release/release-notes-generator",
{
"preset": "angular",
"writerOpts": {
"commitsSort": ["header"]
}
}
],
"prepare": [
{
"path": "semantic-release-helm",
"chartPath": "operator"
},
{
"path": "semantic-release-helm",
"chartPath": "githubreleasesmonitor-sample"
},
{
"path": "@semantic-release/changelog",
"changelogFile": "operator/CHANGELOG.md"
},
{
"path": "@semantic-release/changelog",
"changelogFile": "githubreleasesmonitor-sample/CHANGELOG.md"
},
{
"path": "@semantic-release/git",
"assets": [
{"path": "operator/Chart.yaml"},
{"path": "operator/CHANGELOG.md"},
{"path": "githubreleasesmonitor-sample/Chart.yaml"},
{"path": "githubreleasesmonitor-sample/CHANGELOG.md"}
]
}
],
"publish": "@semantic-release/github",
"success": "@semantic-release/github",
"fail": "@semantic-release/github"
}
}