-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.releaserc.json
46 lines (46 loc) · 1.35 KB
/
.releaserc.json
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
{
"branches": ["main"],
"repositoryUrl": "[email protected]:kirintwn/resume.git",
"plugins": [
"@semantic-release/commit-analyzer",
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{ "type": "build", "section": "Build", "hidden": false },
{ "type": "ci", "section": "CI", "hidden": false },
{ "type": "docs", "section": "Documentations", "hidden": false },
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "perf", "section": "Performance", "hidden": false },
{ "type": "refactor", "section": "Refactor", "hidden": false },
{ "type": "style", "section": "Style", "hidden": false },
{ "type": "test", "section": "Test", "hidden": false }
]
}
}
],
"@semantic-release/changelog",
[
"@semantic-release/git",
{
"assets": ["CHANGELOG.md"],
"message": "release: ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "./resume.pdf",
"label": "resume.pdf",
"name": "resume.pdf"
}
]
}
]
]
}