-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.releaserc.json
More file actions
29 lines (29 loc) · 772 Bytes
/
.releaserc.json
File metadata and controls
29 lines (29 loc) · 772 Bytes
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
{
"branches": ["main", { "name": "development", "prerelease": "d" }],
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/git",
"@alexbabel/semantic-release-docker"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@alexbabel/semantic-release-docker",
"buildArgs": ["--platform", "linux/amd64,linux/arm64", "--push"]
},
{
"path": "@semantic-release/git",
"assets": ["CHANGELOG.md", "package.json", "yarn.lock"]
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
{
"path": "@alexbabel/semantic-release-docker",
"skipPublish": true
}
]
}