mirror of
https://github.com/daveallie/crosspoint-reader.git
synced 2026-02-06 23:57:39 +03:00
41 lines
1.0 KiB
Plaintext
41 lines
1.0 KiB
Plaintext
{
|
|
"plugins": [
|
|
[
|
|
"@semantic-release/commit-analyzer",
|
|
{
|
|
"preset": "conventionalcommits",
|
|
"releaseRules": [
|
|
{ "breaking": true, "release": "minor" },
|
|
{ "type": "feat", "release": "minor" },
|
|
{ "type": "fix", "release": "patch" }
|
|
],
|
|
"parserOpts": {
|
|
"noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES", "BREAKING"]
|
|
}
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/release-notes-generator",
|
|
{
|
|
"preset": "conventionalcommits"
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/github",
|
|
{
|
|
"assets": [
|
|
".pio/build/gh_release/bootloader.bin",
|
|
".pio/build/gh_release/firmware.bin",
|
|
".pio/build/gh_release/firmware.elf",
|
|
".pio/build/gh_release/firmware.map",
|
|
".pio/build/gh_release/partitions.bin"
|
|
],
|
|
"successComment": false,
|
|
"failComment": false,
|
|
"message": "Release - ${nextRelease.version}"
|
|
}
|
|
]
|
|
],
|
|
"branches": ["feature/add-semantic-releases"]
|
|
}
|