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 ac4fb60 commit cd52e02Copy full SHA for cd52e02
.github/workflows/push_dev.yml
@@ -36,3 +36,11 @@ jobs:
36
- name: Test with pytest ✅
37
run: |
38
uv run pytest tests
39
+
40
+ - name: Check version replacement ↔️
41
+ if: github.ref_type == 'tag'
42
+ run: |
43
+ TAG_VERSION=${GITHUB_REF#refs/tags/}
44
+ echo "Tag version: $TAG_VERSION"
45
+ sed -i "s/0.0.0/$TAG_VERSION/" pyproject.toml
46
+ uv version
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "keboola.http-client"
3
-version = "1.1.5"
+version = "0.0.0" # replaced by actual version based on release tag in github actions
4
dependencies = [
5
"aiolimiter>=1.2.1",
6
"httpx>=0.28.1",
0 commit comments