From 219ae8b24b183464c95a611362ff5badff45e56c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartosz=20J=C4=99drecki?= Date: Tue, 12 May 2026 15:32:59 +0200 Subject: [PATCH] Fix wrong braces in release step --- .github/workflows/cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index ff0b237a..4c809d16 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -38,7 +38,7 @@ jobs: printf "Git tag should be identical to version field in pyproject.toml" exit 1 } - uv version "$(VERSION_TAG)" + uv version "${VERSION_TAG}" - name: Get current version id: get-version run: echo "version=$(uv version --short)" >> "$GITHUB_OUTPUT"