ci: add semantic-release

This commit is contained in:
she11sh0cked
2022-03-20 19:03:05 +01:00
committed by oSumAtrIX
parent 5ecbbfc954
commit 7f5f3b217d
2 changed files with 67 additions and 0 deletions

32
.releaserc Normal file
View File

@@ -0,0 +1,32 @@
{
"branches": [
"main",
{
"name": "dev",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md"
]
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "release/**"
}
]
}
]
]
}