We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82ab3f9 commit 4ac8aefCopy full SHA for 4ac8aef
.releaserc.js
@@ -33,7 +33,7 @@ async function config() {
33
console.log(`Running on branch: ${branch}`);
34
35
// Set changelog file
36
- const changelogFile = `./changelogs/CHANGELOG_${branch}.md`;
+ const changelogFile = `./changelogs/CHANGELOG_release.md`;
37
console.log(`Changelog file output to: ${changelogFile}`);
38
39
// Load template file contents
@@ -44,9 +44,8 @@ async function config() {
44
'release',
45
{ name: 'alpha', prerelease: true },
46
{ name: 'beta', prerelease: true },
47
- 'next-major',
48
- // Long-Term-Support branch of previous major version
49
- 'release-7.x.x',
+ // Long-Term-Support branch
+ { name: 'release-7.x.x', range: '7.x.x', channel: '7.x.x' },
50
],
51
dryRun: false,
52
debug: true,
0 commit comments