Fix publishing apks to huggingface (#1121)

Save APKs for each release in a separate directory.

Huggingface requires that each directory cannot contain more than 1000 files.

Since we have so many tts models and for each model we need to build APKs of 4 different ABIs,
it is a workaround for the huggingface's constraint by placing them into separate directories for different releases.
This commit is contained in:
Fangjun Kuang
2024-07-13 16:14:00 +08:00
committed by GitHub
parent 54e6e962bf
commit b5093e27f9
36 changed files with 123 additions and 60 deletions

View File

@@ -49,10 +49,10 @@ This program shows how to use VAD in sherpa-onnx.
--vad-num-threads=1
Please download silero_vad.onnx from
https://github.com/snakers4/silero-vad/blob/master/files/silero_vad.onnx
https://github.com/snakers4/silero-vad/raw/master/src/silero_vad/data/silero_vad.onnx
For instance, use
wget https://github.com/snakers4/silero-vad/raw/master/files/silero_vad.onnx
wget https://github.com/snakers4/silero-vad/raw/master/src/silero_vad/data/silero_vad.onnx
)usage";
sherpa_onnx::ParseOptions po(kUsageMessage);