All checks were successful
Build and Push Docker Image / Build (push) Successful in 1m55s
19 lines
377 B
JavaScript
19 lines
377 B
JavaScript
module.exports = {
|
|
branches: ["main"],
|
|
plugins: [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
[
|
|
"@semantic-release/changelog",
|
|
{
|
|
changelogFile: "docs/CHANGELOG.md",
|
|
},
|
|
],
|
|
[
|
|
"@saithodev/semantic-release-gitea",
|
|
{
|
|
giteaUrl: "https://git.kjan.de",
|
|
},
|
|
],
|
|
],
|
|
};
|