forked from momocow/semantic-release-gitmoji
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.releaserc.js
37 lines (35 loc) · 799 Bytes
/
.releaserc.js
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
const path = require('path')
const fs = require('fs')
const tplFile = path.resolve(__dirname, 'build/release-notes.hbs')
module.exports = {
branches: [
"main",
],
plugins: [
[
'semantic-release-gitmoji',
{
releaseRules: {
patch: {
include: [':bento:', ':arrow_up:', ':lock:'],
},
},
releaseNotes: {
template: fs.readFileSync(tplFile, 'utf-8'),
}
}
],
'@semantic-release/github',
'@semantic-release/npm',
[
'@semantic-release/git',
{
message: [
':bookmark: v${nextRelease.version} [skip ci]',
'',
'https://github.com/momocow/semantic-release-gitmoji/releases/tag/${nextRelease.gitTag}'
].join('\n')
}
]
]
}