From 8166b44642246c48d18084a71503c5ef4fc98277 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Thu, 9 Jan 2025 14:41:11 +0100 Subject: [PATCH] Update .releaserc.js --- .releaserc.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.releaserc.js b/.releaserc.js index 3f663b68ba..7318829f11 100644 --- a/.releaserc.js +++ b/.releaserc.js @@ -33,7 +33,7 @@ async function config() { console.log(`Running on branch: ${branch}`); // Set changelog file - const changelogFile = `./changelogs/CHANGELOG_${branch}.md`; + const changelogFile = `./changelogs/CHANGELOG_release.md`; console.log(`Changelog file output to: ${changelogFile}`); // Load template file contents @@ -44,9 +44,8 @@ async function config() { 'release', { name: 'alpha', prerelease: true }, { name: 'beta', prerelease: true }, - 'next-major', - // Long-Term-Support branch of previous major version - 'release-7.x.x', + // Long-Term-Support branch + { name: 'release-7.x.x', range: '7.x.x', channel: '7.x.x' }, ], dryRun: false, debug: true,