fix: native build could fail due to cache restore
This commit is contained in:
parent
890aae8a72
commit
1786db46cc
1 changed files with 3 additions and 1 deletions
4
.github/workflows/native-build.yml
vendored
4
.github/workflows/native-build.yml
vendored
|
|
@ -113,7 +113,9 @@ jobs:
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
pip install uv
|
pip install uv
|
||||||
uv venv --system-site-packages --relocatable
|
if [ ! -d .venv ]; then
|
||||||
|
uv venv --system-site-packages --relocatable
|
||||||
|
fi
|
||||||
uv sync --link-mode=copy --active --extra installer
|
uv sync --link-mode=copy --active --extra installer
|
||||||
|
|
||||||
- name: Cache bun installation
|
- name: Cache bun installation
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue