-
Notifications
You must be signed in to change notification settings - Fork 5
/
.releaserc.json
64 lines (64 loc) · 1.81 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"branches": [
"main"
],
"debug": true,
"ci": true,
"dryRun": false,
"tagFormat": "${version}",
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "chore",
"release": "patch"
},
{
"type": "deps",
"release": "patch"
},
{
"type": "docs",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": [
{
"path": "dist/x86_64-apple-darwin/gitlab-ci-ls-x86_64-apple-darwin",
"label": "x86_64-apple-darwin"
},
{
"path": "dist/aarch64-apple-darwin/gitlab-ci-ls-aarch64-apple-darwin",
"label": "aarch64-apple-darwin"
},
{
"path": "dist/x86_64-unknown-linux-gnu/gitlab-ci-ls-x86_64-unknown-linux-gnu",
"label": "x86_64-unknown-linux-gnu"
},
{
"path": "dist/checksums.txt",
"label": "checksums.txt"
}
]
}
],
"semantic-release-cargo",
[
"@semantic-release/git",
{
"assets": [
"Cargo.toml",
"Cargo.lock"
]
}
]
]
}