-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease.config.js
More file actions
26 lines (26 loc) · 892 Bytes
/
release.config.js
File metadata and controls
26 lines (26 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
module.exports = {
repositoryUrl: 'https://github.com/PolymeshAssociation/polymesh-types.git',
branches: ['main'],
/*
* In this order the **prepare** step of @semantic-release/npm will run first
* followed by @semantic-release/git:
* - 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',
[
'@semantic-release/github',
{
assets: ['CHANGELOG.md'],
},
],
],
};