forked from edosrecki/google-cloud-sql-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.releaserc.json
49 lines (49 loc) · 1.27 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
48
49
{
"branches": ["master"],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [{ "type": "chore", "release": "patch" }]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/exec",
{
"publishCmd": "./tools/package-google-cloud-sql.sh ${nextRelease.version}"
}
],
"@semantic-release/npm",
"@semantic-release/git",
[
"@semantic-release/github",
{
"assets": [
{
"path": "bin/google-cloud-sql-linux.tar.gz",
"name": "google-cloud-sql-linux-${nextRelease.version}.tar.gz",
"label": "Linux distribution"
},
{
"path": "bin/google-cloud-sql-macos.tar.gz",
"name": "google-cloud-sql-macos-${nextRelease.version}.tar.gz",
"label": "MacOS distribution"
},
{
"path": "bin/google-cloud-sql-win.tar.gz",
"name": "google-cloud-sql-win-${nextRelease.version}.tar.gz",
"label": "Windows distribution"
}
]
}
],
[
"@semantic-release/exec",
{
"publishCmd": "./tools/publish-brew-formula.sh ${nextRelease.version}"
}
]
]
}