module.exports = { repositoryUrl: 'https://github.com/PolymeshAssociation/polymesh-sdk.git', branches: [ 'master', { name: 'develop', prerelease: 'beta', }, { name: 'next-bc-+([0-9])', prerelease: true, channel: 'next', }, { name: 'v26', range: '26.x', }, ], /* * In this order the **prepare** step of @semantic-release/npm will run first * followed by @semantic-release/github: * - Update the package.json version and create the npm package tarball * - Push a release commit and tag, including configurable files * * See: * - https://github.com/semantic-release/semantic-release/blob/beta/docs/usage/plugins.md#plugin-ordering * - https://github.com/semantic-release/semantic-release/blob/beta/docs/extending/plugins-list.md */ plugins: [ '@semantic-release/commit-analyzer', '@semantic-release/release-notes-generator', '@semantic-release/changelog', [ '@semantic-release/npm', { tarballDir: 'npm-package/', }, ], [ '@semantic-release/github', { assets: ['CHANGELOG.md'], }, ], ], };