From 6b5ace43c7baa0f21fa2948563541ea198f0ed2c Mon Sep 17 00:00:00 2001 From: CJ Pais Date: Wed, 25 Jun 2025 19:11:12 -0700 Subject: [PATCH] download model files and put them into place for release --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 600c0b4..33b052c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -62,6 +62,12 @@ jobs: sudo apt-get install -y mesa-vulkan-drivers if: matrix.platform == 'ubuntu-22.04' + - name: Download model files + run: | + mkdir -p src-tauri/resources/models + curl -o src-tauri/resources/models/ggml-small.bin https://blob.handy.computer/ggml-small.bin + curl -o src-tauri/resources/models/silero_vad_v4.onnx https://blob.handy.computer/silero_vad_v4.onnx + - name: install frontend dependencies run: bun install # change this to npm, pnpm or bun depending on which one you use.