|
1 | 1 | { |
2 | 2 | "branches": ["main"], |
3 | 3 | "plugins": [ |
4 | | - [ |
5 | | - "@semantic-release/commit-analyzer", |
6 | | - { |
7 | | - "preset": "conventionalcommits", |
8 | | - "releaseRules": [ |
9 | | - { "type": "docs", "release": "minor" }, |
10 | | - { "type": "fix", "release": "patch" }, |
11 | | - { "type": "refactor", "release": "patch" }, |
12 | | - { "type": "style", "release": "patch" }, |
13 | | - { "type": "perf", "release": "patch" }, |
14 | | - { "type": "chore", "release": false } |
15 | | - ] |
16 | | - } |
17 | | - ], |
| 4 | + "@semantic-release/commit-analyzer", |
18 | 5 | "@semantic-release/release-notes-generator", |
19 | 6 | [ |
20 | 7 | "@semantic-release/changelog", |
21 | 8 | { |
22 | 9 | "changelogFile": "CHANGELOG.md" |
23 | 10 | } |
24 | 11 | ], |
25 | | - [ |
26 | | - "@semantic-release/exec", |
27 | | - { |
28 | | - "prepareCmd": "sed -i 's/\\*\\*Version:\\*\\* [0-9]*\\.[0-9]*\\.[0-9]*/\\*\\*Version:\\*\\* ${nextRelease.version}/' docs/specification.md && sed -i 's/Draft v[0-9]*\\.[0-9]*\\.[0-9]*/Draft v${nextRelease.version}/g' README.md AGENTS.md" |
29 | | - } |
30 | | - ], |
31 | 12 | [ |
32 | 13 | "@semantic-release/git", |
33 | 14 | { |
34 | | - "assets": ["CHANGELOG.md", "docs/specification.md", "README.md", "AGENTS.md"], |
| 15 | + "assets": ["CHANGELOG.md"], |
35 | 16 | "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" |
36 | 17 | } |
37 | 18 | ], |
|
0 commit comments