Files
AareDAQ/ci/semantic_release.toml
2026-07-27 14:44:33 +02:00

36 lines
698 B
TOML

[tool.semantic_release]
build_command = "python -m build"
version_toml = [
"./pyproject.toml:project.version",
]
[tool.semantic_release.commit_author]
env = "GIT_COMMIT_AUTHOR"
default = "semantic-release <semantic-release>"
[tool.semantic_release.commit_parser_options]
allowed_tags = [
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"style",
"refactor",
"test",
]
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]
default_bump_level = 0
[tool.semantic_release.remote]
type = "gitea"
domain = "gitea.psi.ch"
token = { env = "MX_GITEA_BOT_TOKEN" }
[tool.semantic_release.publish]
dist_glob_patterns = ["dist/*"]
upload_to_vcs_release = true