From d4c8293687a52eaf3337fe02e2f7b80e4cc9a1bb Mon Sep 17 00:00:00 2001 From: phernandez Date: Thu, 13 Feb 2025 20:13:40 -0600 Subject: [PATCH] fix: activate vitualenv in installer build --- .github/workflows/release.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b820e9bd..2e5e87d9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -64,8 +64,11 @@ jobs: - name: Install uv run: | - curl -LsSf https://astral.sh/uv/install.sh | sh - echo "$HOME/.cargo/bin" >> $GITHUB_PATH + pip install uv + + - name: Create virtual env + run: | + uv venv - name: Install librsvg run: brew install librsvg @@ -92,4 +95,4 @@ jobs: with: files: installer/dist/Basic-Memory-Installer-${{ needs.release.outputs.tag }}.zip tag_name: ${{ needs.release.outputs.tag }} - token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + token: ${{ secrets.GITHUB_TOKEN }}