-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.releaserc.json
More file actions
22 lines (22 loc) · 806 Bytes
/
.releaserc.json
File metadata and controls
22 lines (22 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"branches": ["main"],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
["@semantic-release/github", {
"assets": [
{"path": "dist/accel-exporter-linux-amd64"},
{"path": "dist/accel-exporter-linux-arm64"},
{"path": "dist/accel-exporter-darwin-amd64"},
{"path": "dist/accel-exporter-darwin-arm64"},
{"path": "dist/checksums.txt"},
{"path": "dist/debian-11/*.deb", "name": "accel-exporter_*_amd64_debian11.deb"},
{"path": "dist/debian-12/*.deb", "name": "accel-exporter_*_amd64_debian12.deb"}
]
}],
["@semantic-release/git", {
"assets": ["go.mod", "go.sum"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}]
]
}