download model files and put them into place for release

This commit is contained in:
CJ Pais 2025-06-25 19:11:12 -07:00
parent 51197ab3b6
commit 6b5ace43c7

View file

@ -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.