Files
AareCommon/ci/semantic_release.toml
perl_d dbf3e5f9b6
CI / lint (push) Successful in 15s
CI / test (3.11) (push) Successful in 24s
CI / test (3.12) (push) Successful in 23s
CI / test (3.13) (push) Successful in 22s
fix: release workflow
2026-07-02 17:02:55 +02:00

39 lines
736 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]
name = "origin"
type = "github"
ignore_token_for_push = true
[tool.semantic_release.remote.token]
env = "GH_TOKEN"
[tool.semantic_release.publish]
dist_glob_patterns = ["dist/*"]
upload_to_vcs_release = true