This repository has been archived by the owner on May 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.releaserc
41 lines (41 loc) · 1.56 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
{
"debug": true,
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/exec",
{
"prepareCmd": "bump2version --allow-dirty --current-version ${lastRelease.version} --new-version ${nextRelease.version} patch"
}
],
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version} release notes\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"assets":
[
{
"path": "modules/findings_api/target/findings_api-*[0-9].*[0-9].*[0-9].jar", "label": "findings_api-${nextRelease.version}.jar", "name": "findings_api-${nextRelease.version}.jar"
},
{
"path": "modules/notifications_api/target/notifications_api-*[0-9].*[0-9].*[0-9].jar", "label": "notifications_api-${nextRelease.version}.jar", "name": "notifications_api-${nextRelease.version}.jar"
},
{
"path": "modules/findings_api/target/findings_api-*[0-9].*[0-9].*[0-9]-javadoc.jar", "label": "findings_api_javadoc-${nextRelease.version}.jar", "name": "findings_api_javadoc-${nextRelease.version}.jar"
},
{
"path": "modules/notifications_api/target/notifications_api-*[0-9].*[0-9].*[0-9]-javadoc.jar", "label": "notifications_api_javadoc-${nextRelease.version}.jar", "name": "notifications_api_javadoc-${nextRelease.version}.jar"
}
]
}
]
]
}