mirror of
https://github.com/daveallie/crosspoint-reader.git
synced 2026-02-06 23:57:39 +03:00
**Description**: Implement semantic release workflow. Signed-off-by: Andrew Brandt <brandt.andrew89@gmail.com>
38 lines
778 B
Plaintext
38 lines
778 B
Plaintext
{
|
|
"plugins": [
|
|
[
|
|
"@semantic-release/commit-analyzer",
|
|
{
|
|
"preset": "conventionalcommits"
|
|
}
|
|
],
|
|
[
|
|
"@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",
|
|
{
|
|
"name": "main"
|
|
}
|
|
]
|
|
]
|
|
}
|