diff --git a/.circleci/config.yml b/.circleci/config.yml index 206170ca..913196bc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -44,3 +44,8 @@ workflows: - '/^4.*/' - '/^3.*/' - '/^2.*/' + - main + - next + - next-major + - '/^*-alpha' + - '/^*-beta' diff --git a/release.config.js b/release.config.js index fbe97ac7..57e6f87c 100644 --- a/release.config.js +++ b/release.config.js @@ -1,7 +1,11 @@ module.exports = { branches: [ '+([0-9])?(.{+([0-9]),x}).x', - 'master', + 'main', + 'next', + 'next-major', + {name: 'beta', prerelease: true}, + {name: 'alpha', prerelease: true} ], plugins: [ ['@semantic-release/commit-analyzer'],