fix: add missing semantic release config (#45)

* fix: resolve unrecognizable ci job
* refactor(workflow): reconfigure ci.yml
* fix: add missing semantic release config
This commit is contained in:
Walid 2022-08-13 20:13:10 +01:00 committed by GitHub
parent a94bd4f711
commit 773d775f31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

21
.releaserc Normal file
View File

@ -0,0 +1,21 @@
{
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}