ci: Add semantic-release

This commit is contained in:
Timo Reymann
2023-02-15 13:51:44 +01:00
parent 308768579c
commit 85e9ceda4f
2 changed files with 62 additions and 0 deletions
+46
View File
@@ -0,0 +1,46 @@
{
"branches": [
"master",
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": "CHANGELOG.md"
}
],
[
"@semantic-release/github",
{
"path": "semantic-release",
"name": "timo-reymann/bash-tui-toolkit",
"assets": [
{
"path": "dist/bundle.sh",
"label": "Full Library"
}
]
}
]
],
"tagFormat": "${version}"
}