Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/build-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,13 @@ jobs:
- name: Setup Virtual Env
run: |
uv venv --seed .venv
echo "$GITHUB_WORKSPACE/.venv/bin" >> $GITHUB_PATH
source .venv/bin/activate
if [[ "${{ inputs.os }}" == "windows" ]]; then
echo "$GITHUB_WORKSPACE/.venv/Scripts" >> $GITHUB_PATH
source .venv/Scripts/activate
else
echo "$GITHUB_WORKSPACE/.venv/bin" >> $GITHUB_PATH
source .venv/bin/activate
fi
uv pip install twine yq setuptools_scm

- uses: oven-sh/setup-bun@v2
Expand Down
Loading