Build and Publish / release (push) Successful in 16s
CI / lint (pull_request) Successful in 56s
CI / test (3.11) (pull_request) Successful in 25s
CI / test (3.12) (pull_request) Successful in 26s
CI / test (3.13) (push) Successful in 54s
CI / lint (push) Successful in 47s
CI / test (3.13) (pull_request) Successful in 45s
CI / test (3.11) (push) Successful in 1m14s
CI / test (3.12) (push) Successful in 1m15s
36 lines
698 B
TOML
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
|