ci: implement semantic release workflow

**Description**:

Implement semantic release workflow.

Signed-off-by: Andrew Brandt <brandt.andrew89@gmail.com>
This commit is contained in:
Andrew Brandt
2026-01-19 08:59:32 -06:00
parent 6d68466891
commit 0589664924
2 changed files with 65 additions and 6 deletions

37
.releaserc Normal file
View File

@@ -0,0 +1,37 @@
{
"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"
}
]
]
}