From 68e92e5e316c0f1aaf0841692bbac6e880023b96 Mon Sep 17 00:00:00 2001 From: behnam Date: Thu, 5 Mar 2026 13:48:21 +0000 Subject: [PATCH] fix: Add rc channel to release branch To avoid loosing the channel and last tags in different release branches added channel so on remove a release branch and create another one, the new one won't loose the channel of tags --- release.config.cjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release.config.cjs b/release.config.cjs index 887f9aa..ccc024a 100644 --- a/release.config.cjs +++ b/release.config.cjs @@ -79,8 +79,8 @@ module.exports = { 'main', 'master', { name: 'develop', prerelease: 'beta' }, - { name: 'release/*', prerelease: 'rc' }, - ], + { name: 'release/*', prerelease: 'rc', channel: 'rc' } +], tagFormat: 'v${version}', plugins, };