Skip to content

Commit 99b7d14

Browse files
committed
fix(ci): 🔧 Add changelog generation on semantic-release
1 parent 9cb4ffe commit 99b7d14

1 file changed

Lines changed: 19 additions & 10 deletions

File tree

.releaserc.json

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,27 @@
11
{
2-
"branches": [
3-
"main",
4-
{
5-
"name": "staging",
6-
"prerelease": true
7-
},
8-
"production"
9-
],
2+
"branches": ["main"],
103
"repositoryUrl": "https://github.com/steamicc/makecode-steami.git",
114
"debug": "false",
125
"plugins": [
136
"@semantic-release/commit-analyzer",
147
"@semantic-release/release-notes-generator",
15-
"@semantic-release/git",
16-
"@semantic-release/github"
8+
[
9+
"@semantic-release/changelog",
10+
{
11+
"changelogTitle": "# Changelog\n\nAll notable changes to this project will be documented in this file. See\n[Conventional Commits](https://conventionalcommits.org) for commit guidelines."
12+
}
13+
],
14+
[
15+
"@semantic-release/github",
16+
{
17+
"assets": "pack/*.tgz"
18+
}
19+
],
20+
[
21+
"@semantic-release/git",
22+
{
23+
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
24+
}
25+
]
1726
]
1827
}

0 commit comments

Comments
 (0)