-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease.config.cjs
65 lines (63 loc) · 1.45 KB
/
release.config.cjs
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
const ref = process.env.GITHUB_REF || ''
const branch = ref.split('/').pop()
/**
* @type {import('semantic-release').GlobalConfig}
*/
module.exports = {
branches: ['master', { name: 'pre', prerelease: true }],
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
[
'@semantic-release/npm',
{
// only update the pkg version on root, don't publish
npmPublish: false,
},
],
// [
// '@semantic-release/npm',
// {
// // only update the pkg version on doc, don't publish
// npmPublish: false,
// pkgRoot: 'doc',
// },
// ]
[
'@semantic-release/npm',
{
// publish from build dir instead of root
pkgRoot: 'build',
},
],
[
'@semantic-release/github',
{
assets: ['*.tgz'],
},
],
[
'@semantic-release/git',
{
assets: ['package.json', 'CHANGELOG.md'].filter(Boolean),
},
],
//
// [
// '@semantic-release/exec',
// {
// verifyReleaseCmd: 'echo ${nextRelease.version} > .VERSION',
// },
// ],
],
}
if (branch === 'master') {
const gitIdx = module.exports.plugins.findIndex((plugin) => plugin[0] === '@semantic-release/git')
module.exports.plugins.splice(gitIdx, 0, [
'@semantic-release/changelog',
{
changelogFile: 'CHANGELOG.md',
changelogTitle: '# Change Log',
},
])
}