From 6505dc59b484a0b706a84dfb5c423b8f947ee629 Mon Sep 17 00:00:00 2001 From: Manuel <5673677+mtrezza@users.noreply.github.com> Date: Fri, 12 Dec 2025 00:53:15 +0100 Subject: [PATCH] ci: Update auto-release LTS branch Signed-off-by: Manuel <5673677+mtrezza@users.noreply.github.com> --- .releaserc.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.releaserc.js b/.releaserc.js index aa60e1dde7..f82e30fb56 100644 --- a/.releaserc.js +++ b/.releaserc.js @@ -34,7 +34,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`; // eslint-disable-next-line no-console console.log(`Changelog file output to: ${changelogFile}`); @@ -46,9 +46,8 @@ async function config() { 'release', { name: 'alpha', prerelease: true }, // { name: 'beta', prerelease: true }, - 'next-major', // Long-Term-Support branch - 'release-8.x.x', + { name: 'release-8.x.x', range: '8.x.x', channel: '8.x.x' }, ], dryRun: false, debug: true,