This repository has been archived on 2023-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
mfgames-io-cil/release.config.js

27 lines
698 B
JavaScript
Raw Normal View History

2021-09-11 05:54:27 +00:00
module.exports = {
2021-12-06 23:52:35 +00:00
extends: ["@commitlint/config-conventional"],
2021-09-11 05:54:27 +00:00
branches: ["main"],
2021-12-06 23:52:35 +00:00
message: "chore(release): v${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
2021-09-11 05:54:27 +00:00
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"semantic-release-dotnet",
{
2021-12-06 23:52:35 +00:00
paths: ["src/Directory.Build.props"],
},
],
2021-09-11 05:54:27 +00:00
[
"semantic-release-nuget",
{
packArguments: ["--include-symbols", "--include-source"],
pushFiles: ["src/*/bin/Debug/*.nupkg"],
},
2021-09-11 05:54:27 +00:00
],
"@semantic-release/changelog",
"@semantic-release/git",
"@semantic-release/gitlab",
],
};