build: upgraded to sem release 9

This commit is contained in:
wakonig_k 2024-04-12 19:04:54 +02:00
parent 65566bc52a
commit 0864c0c049
2 changed files with 72 additions and 8 deletions

View File

@ -144,15 +144,13 @@ semver:
- git fetch --tags - git fetch --tags
- git tag - git tag
# build # build and publish package
- pip install python-semantic-release==7.* wheel - pip install python-semantic-release==9.* wheel build twine
- export GL_TOKEN=$CI_UPDATES - export GL_TOKEN=$CI_UPDATES
- export REPOSITORY_USERNAME=__token__ - semantic-release -vv version
- export REPOSITORY_PASSWORD=$CI_PYPI_TOKEN - python -m build
- > - twine upload dist/* -u __token__ -p $CI_PYPI_TOKEN
semantic-release publish -v DEBUG - semantic-release publish
-D version_toml=./pyproject.toml:project.version
-D hvcs=gitlab
allow_failure: false allow_failure: false
rules: rules:

View File

@ -42,3 +42,69 @@ include = ["*"]
[tool.black] [tool.black]
line-length = 100 line-length = 100
skip-magic-trailing-comma = true skip-magic-trailing-comma = true
[tool.semantic_release]
assets = []
commit_message = "{version}\n\nAutomatically generated by python-semantic-release"
commit_parser = "angular"
logging_use_named_masks = false
major_on_zero = true
allow_zero_version = true
tag_format = "v{version}"
[tool.semantic_release.branches.main]
match = "(main|master)"
prerelease_token = "rc"
prerelease = false
[tool.semantic_release.changelog]
template_dir = "templates"
changelog_file = "CHANGELOG.md"
exclude_commit_patterns = []
[tool.semantic_release.changelog.environment]
block_start_string = "{%"
block_end_string = "%}"
variable_start_string = "{{"
variable_end_string = "}}"
comment_start_string = "{#"
comment_end_string = "#}"
trim_blocks = false
lstrip_blocks = false
newline_sequence = "\n"
keep_trailing_newline = false
extensions = []
autoescape = true
[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 = "gitlab"
ignore_token_for_push = false
[tool.semantic_release.remote.token]
env = "GL_TOKEN"
[tool.semantic_release.publish]
dist_glob_patterns = ["dist/*"]
upload_to_vcs_release = true