-
Notifications
You must be signed in to change notification settings - Fork 0
/
.releaserc.json
38 lines (38 loc) · 1.08 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
{
"repositoryUrl": "https://github.com/CyberDeer/InPost-Air.git",
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/exec",
{
"prepareCmd": "yq -i -o json '.version=\"${nextRelease.version}\"' ./custom_components/inpost_air/manifest.json"
}
],
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version} [skip ci]",
"assets": [
"CHANGELOG.md",
"custom_components/inpost_air/manifest.json"
]
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "custom_components/inpost_air/release.zip",
"label": "Release archive"
}
]
}
]
]
}