forked from geostyler/geostyler-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.releaserc
47 lines (47 loc) · 1.21 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
{
"branches": ["main"],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"header": "Changelog of GeoStyler Client"
}
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "echo \"export default '${nextRelease.version}';\" > ./src/version.ts"
}
],
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md", "package.json", "package-lock.json", "./src/version.ts"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"assets": [
{"path": "./binaries/geostyler-linux.zip", "label": "GeoStyler CLI Linux executable"},
{"path": "./binaries/geostyler-macos.zip", "label": "GeoStyler CLI MacOS executable"},
{"path": "./binaries/geostyler-win.exe.zip", "label": "GeoStyler CLI Windows executable"}
]
}
]
]
}