-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.releaserc.yml
More file actions
33 lines (32 loc) · 865 Bytes
/
.releaserc.yml
File metadata and controls
33 lines (32 loc) · 865 Bytes
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
branches:
- main
- name: dev
channel: dev
prerelease: dev
tagFormat: ${version}
preset: conventionalcommits
plugins:
- "@semantic-release/commit-analyzer"
- - "@semantic-release/release-notes-generator"
- presetConfig:
types:
- type: "fix"
section: "Fixes"
- type: "feat"
section: "Features"
- type: "perf"
section: "Performance Improvements"
- - "@semantic-release/changelog"
- changelogFile: CHANGELOG.md
- - "@semantic-release/exec"
- prepareCmd: uv version "${nextRelease.version}"
publishCmd: uv build
- - "@semantic-release/git"
- assets:
- CHANGELOG.md
- pyproject.toml
- uv.lock
message: |-
chore(release): ${nextRelease.version} [skip ci]
${nextRelease.notes}
- "@semantic-release/github"