build: set up versioning with semantic-release

This commit is contained in:
2025-06-23 15:51:49 +03:00
parent e3c73af436
commit 74a1a9d664
7 changed files with 6813 additions and 1 deletions

20
.releaserc.json Normal file
View File

@@ -0,0 +1,20 @@
{
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/git",
{
"assets": [
"manifest.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}