mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-09-19 18:40:03 +08:00
23 lines
521 B
YAML
23 lines
521 B
YAML
name: Build and Upload Windows Package
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
strategy:
|
|
matrix:
|
|
torch_cuda: [cu124, cu128]
|
|
env:
|
|
TORCH_CUDA: ${{ matrix.torch_cuda }}
|
|
MODELSCOPE_USERNAME: ${{ secrets.MODELSCOPE_USERNAME }}
|
|
MODELSCOPE_TOKEN: ${{ secrets.MODELSCOPE_TOKEN }}
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run Build and Upload Script
|
|
shell: pwsh
|
|
run: .github/build_windows_packages.ps1 |