From 1786db46ccbd6d5ca2a26f1e36fb656b2dc18391 Mon Sep 17 00:00:00 2001 From: arabcoders Date: Sat, 11 Apr 2026 19:48:48 +0300 Subject: [PATCH] fix: native build could fail due to cache restore --- .github/workflows/native-build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/native-build.yml b/.github/workflows/native-build.yml index 4e8a5b03..8840d7d7 100644 --- a/.github/workflows/native-build.yml +++ b/.github/workflows/native-build.yml @@ -113,7 +113,9 @@ jobs: shell: bash run: | 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 - name: Cache bun installation