-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease.config.mjs
More file actions
29 lines (28 loc) · 954 Bytes
/
release.config.mjs
File metadata and controls
29 lines (28 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
process.env.SEMANTIC_RELEASE_PACKAGE = "Ts.ED CMS";
export default {
branches: [
"main",
{ name: "alpha", prerelease: true, channel: "alpha" },
{ name: "beta", prerelease: true, channel: "beta" },
{ name: "rc", prerelease: true, channel: "rc" }
],
verifyConditions: ["@semantic-release/github", "@tsed/monorepo-utils/semantic-release", "semantic-release-slack-bot"],
analyzeCommits: ["@semantic-release/commit-analyzer"],
verifyRelease: [],
generateNotes: ["@semantic-release/release-notes-generator"],
prepare: ["@tsed/monorepo-utils/semantic-release"],
publish: ["@tsed/monorepo-utils/semantic-release", "@semantic-release/github"],
success: [
"@semantic-release/github",
"@tsed/monorepo-utils/semantic-release",
[
"semantic-release-slack-bot",
{
markdownReleaseNotes: true,
notifyOnSuccess: true
}
]
],
fail: ["@semantic-release/github"],
npmPublish: false
};