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-gallium-cil/release.config.js

32 lines
771 B
JavaScript
Raw Normal View History

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