From 69a3b2e4ab95255e1849553dd99bb8daf8eb1872 Mon Sep 17 00:00:00 2001 From: Bill Glesias Date: Fri, 12 Jun 2026 08:42:56 -0400 Subject: [PATCH] chore: fix 'besta' typo in semantic-release prerelease branch name The CircleCI publish job filter allows the 'beta' branch, but .releaserc configured 'besta', so a beta prerelease could never publish: the publish job only runs for 'beta', where semantic-release rejects the unconfigured branch. Neither branch currently exists on the remote. Co-Authored-By: Claude Fable 5 --- .releaserc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.releaserc b/.releaserc index 366e1950e..200d7c3d8 100644 --- a/.releaserc +++ b/.releaserc @@ -3,7 +3,7 @@ "master", "next", { - "name": "besta", + "name": "beta", "prerelease": true }, {