-
Notifications
You must be signed in to change notification settings - Fork 11
/
.releaserc.json
47 lines (47 loc) · 1.05 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
41
42
43
44
45
46
47
{
"branches": "release",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"pkgRoot": "dist"
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "cp dist/package*.json ./"
}
],
"@semantic-release/git",
[
"@semantic-release/github",
{
"assets": [
{
"path": "bundle/neonctl-linux-x64",
"name": "neonctl-linux-x64",
"label": "Linux x64 version"
},
{
"path": "bundle/neonctl-linux-arm64",
"name": "neonctl-linux-arm64",
"label": "Linux arm64 version"
},
{
"path": "bundle/neonctl-macos-x64",
"name": "neonctl-macos-x64",
"label": "MacOS version"
},
{
"path": "bundle/neonctl-win-x64.exe",
"name": "neonctl-win-x64.exe",
"label": "Windows version"
}
]
}
]
]
}