From 3eb04049be1900b41a3fb6f7903e7b4a378744df Mon Sep 17 00:00:00 2001 From: Sundar Raghavan Date: Fri, 5 Sep 2025 15:41:49 -0700 Subject: [PATCH] fix: add uv installation to release workflow --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8ce3637..139c5bf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -51,6 +51,11 @@ jobs: git config --global user.name "github-actions[bot]" git config --global user.email "github-actions[bot]@users.noreply.github.com" + - name: Install uv + run: | + curl -LsSf https://astral.sh/uv/install.sh | sh + echo "$HOME/.local/bin" >> $GITHUB_PATH + - name: Get current version id: current run: |