Skip to content

Commit

Permalink
Merge pull request #3 from adevinta/feature/cicd
Browse files Browse the repository at this point in the history
fix: add CICD pyproject.toml config
  • Loading branch information
alexvazquez1988 authored May 17, 2024
2 parents ec0d7d1 + ef32191 commit 7cb5ab0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,31 @@ pytest = "^8.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.semantic_release]
version_toml = [
"pyproject.toml:tool.poetry.version"
]

branch = "main"
upload_to_PyPI = true
upload_to_release = true
build_command = "pip install poetry && poetry build"
commit_author = "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>"


[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"]

0 comments on commit 7cb5ab0

Please sign in to comment.