-
Notifications
You must be signed in to change notification settings - Fork 4
/
release.config.js
173 lines (173 loc) · 3.55 KB
/
release.config.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
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
export default {
branches: ['main', { name: 'beta', prerelease: true, channel: 'beta' }],
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
[
'@semantic-release/changelog',
{
changelogTitle:
'# Changelog' +
'\n\n> This file was generated automatically using [@semantic-release](https://github.com/semantic-release/semantic-release).',
},
],
[
'@semantic-release/exec',
{
prepareCmd: 'npm run changelog:fix || true',
},
],
[
'@semantic-release/exec',
{
// eslint-disable-next-line no-template-curly-in-string
verifyReleaseCmd: 'echo ${nextRelease.version} > .VERSION',
},
],
'@semantic-release/npm',
[
'@semantic-release/git',
{
assets: ['package.json', 'package-lock.json', 'CHANGELOG.md'],
// eslint-disable-next-line no-template-curly-in-string
message: 'release: ${nextRelease.version} [skip ci]',
},
],
[
'@semantic-release/github',
{
assets: [
{
path: 'README.md',
label: 'Documentation',
},
{
path: 'CHANGELOG.md',
label: 'Changelog',
},
{
path: 'sea/dclint-alpine-amd64',
label: 'DClint Alpine Linux Binary (amd64)',
},
{
path: 'sea/dclint-bullseye-amd64',
label: 'DClint Bullseye Linux Binary (amd64)',
},
{
path: 'sea/dclint-alpine-arm64',
label: 'DClint Alpine Linux Binary (arm64)',
},
{
path: 'sea/dclint-bullseye-arm64',
label: 'DClint Bullseye Linux Binary (arm64)',
},
],
},
],
],
preset: 'conventionalcommits',
presetConfig: {
types: [
{
type: 'rule',
section: 'New Rules',
},
{
type: 'feat',
section: 'Features',
},
{
type: 'fix',
section: 'Bug Fixes',
},
{
type: 'refactor',
section: 'Code Refactoring',
},
{
type: 'perf',
section: 'Performance Improvements',
},
{
type: 'test',
section: 'Tests',
},
{
type: 'deps',
section: 'Dependencies',
},
{
type: 'docs',
section: 'Documentation',
},
{
type: 'ci',
section: 'CI/CD',
},
{
type: 'chore',
section: 'Others',
},
{
type: 'revert',
section: 'Reverts',
},
],
releaseRules: [
{
type: 'rule',
release: 'major',
},
{
type: 'feat',
release: 'minor',
},
{
type: 'fix',
release: 'patch',
},
{
type: 'refactor',
release: false,
},
{
type: 'perf',
release: 'patch',
},
{
type: 'test',
release: false,
},
{
type: 'deps',
scope: 'dev',
release: false,
},
{
type: 'deps',
release: 'patch',
},
{
type: 'docs',
release: false,
},
{
type: 'ci',
release: false,
},
{
type: 'chore',
release: false,
},
{
type: 'revert',
release: 'patch',
},
{
type: 'release',
release: false,
},
],
userUrlFormat: 'https://github.com/{{user}}',
},
};