We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f4a346 commit 666bbc2Copy full SHA for 666bbc2
.github/workflows/release.yml
@@ -19,6 +19,9 @@ jobs:
19
fetch-depth: 0
20
token: ${{ secrets.RELEASE_GITHUB_TOKEN }}
21
22
+ - name: Install build dependency
23
+ run: pip install build
24
+
25
- name: Python Semantic Release
26
uses: python-semantic-release/python-semantic-release@v8.1.2
27
with:
pyproject.toml
@@ -88,11 +88,11 @@ disable_error_code = ["no-untyped-def"]
88
89
[tool.semantic_release]
90
branch = "main"
91
+build_command = "python -m build ."
92
version_variables = [
93
"gitlab/_version.py:__version__",
94
]
-commit_subject = "chore: release v{version}"
95
-commit_message = ""
+commit_message = "chore: release v{version}"
96
97
[tool.pylint.messages_control]
98
max-line-length = 88
0 commit comments