Skip to content

Commit 983898a

Browse files
authored
(fix) scripts/tag-and-release: Change ref to refs in Branch name
The value for `BRANCH` env in `master` branch would be `refs/heads/master`. Signed-off-by: Progyan Bhattacharya <[email protected]>
1 parent 4c94ce5 commit 983898a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/tag-and-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const StableVersionRegex = /^[0-9]+\.[0-9]+\.[0-9]+$/;
2929
* @returns True if the current branch is `master`, else False.
3030
*/
3131
function isMasterBranch() {
32-
return process.env.BRANCH === "ref/heads/master";
32+
return process.env.BRANCH === "refs/heads/master";
3333
}
3434

3535
/**

0 commit comments

Comments
 (0)