feat: initial setup of github action and semantic release

This commit is contained in:
2025-12-16 20:16:35 +03:00
commit 717c267d0e
6 changed files with 2459 additions and 0 deletions

13
.releaserc.json Normal file
View File

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