We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf050d1 commit 3e20a76Copy full SHA for 3e20a76
.github/workflows/release.yml
@@ -19,9 +19,6 @@ 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,7 +88,10 @@ disable_error_code = ["no-untyped-def"]
88
89
[tool.semantic_release]
90
branch = "main"
91
-build_command = "python -m build ."
+build_command = """
92
+ python -m pip install build~=0.10.0
93
+ python -m build .
94
+"""
95
version_variables = [
96
"gitlab/_version.py:__version__",
97
]
0 commit comments