| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- name: build-windows-package
- on:
- push:
- branches:
- - main
- jobs:
- deploy:
- runs-on: ubuntu-latest
- steps:
- - name: Remove unnecessary files
- run: |
- sudo rm -rf /usr/share/dotnet
- sudo rm -rf /opt/ghc
- sudo rm -rf /usr/local/lib/android
- sudo rm -rf "/usr/local/share/boost"
- sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- - uses: actions/setup-python@v5
- with:
- python-version: 3.12
- - uses: actions/checkout@v4
- with:
- path: ./fish-speech
- - name: Setup Hugging Face CLI
- run: pip3 install huggingface-hub
- - name: Download Windows Binaries
- env:
- HF_TOKEN: ${{ secrets.HF_TOKEN }}
- run: |
- ls -la
- huggingface-cli download fishaudio/fish-speech-1 fish-speech-v1.0.zip \
- --local-dir ./ --local-dir-use-symlinks False
- unzip -q fish-speech-v1.0.zip -d fish-speech-zip
- rm fish-speech-v1.0.zip
- mv fish-speech-zip/fish-speech/fishenv fish-speech-zip/fish-speech/ffmpeg.exe \
- fish-speech-zip/fish-speech/checkpoints fish-speech-zip/fish-speech/.cache ./fish-speech
- rm -rf fish-speech-zip
- rm ./fish-speech/checkpoints/text2semantic-sft-large-v1-4k.pth
- rm ./fish-speech/checkpoints/text2semantic-pretrain-medium-2k-v1.pth
- huggingface-cli download fishaudio/fish-speech-1 ffprobe.exe \
- --local-dir ./fish-speech --local-dir-use-symlinks False
- huggingface-cli download fishaudio/fish-speech-1 text2semantic-sft-large-v1.1-4k.pth \
- --local-dir ./fish-speech/checkpoints --local-dir-use-symlinks False
- huggingface-cli download fishaudio/fish-speech-1 text2semantic-sft-medium-v1.1-4k.pth \
- --local-dir ./fish-speech/checkpoints --local-dir-use-symlinks False
- huggingface-cli download fishaudio/fish-speech-1 vits_decoder_v1.1.ckpt \
- --local-dir ./fish-speech/checkpoints --local-dir-use-symlinks False
- - uses: actions/upload-artifact@v4
- with:
- name: fish-speech-main-${{ github.run_id }}
- path: ./fish-speech
- - name: Check and Compress fish-speech
- run: |
- if [ ! -f fish-speech-main-${{ github.run_id }}.zip ]; then
- zip -qr fish-speech-main-${{ github.run_id }}.zip ./fish-speech
- else
- echo "Zip file already exists, skipping compression."
- fi
- - name: Upload to Hugging Face
- env:
- HF_TOKEN: ${{ secrets.HF_TOKEN }}
- run: |
- huggingface-cli upload SpicyqSama007/fish-speech-packed ./fish-speech-main-${{ github.run_id }}.zip fish-speech-main-${{ github.run_id }}.zip
|