Spaces:
Runtime error
Runtime error
File size: 730 Bytes
b4d60ce |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
name: Sync to Hugging Face Spaces
on:
push:
branches:
- main
jobs:
sync:
name: Sync
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
lfs: true
- name: Sync to Hugging Face Spaces
uses: JacobLinCool/huggingface-sync@v1
with:
github: ${{ secrets.GITHUB_TOKEN }}
user: jacoblincool # Hugging Face username or organization name
space: ZeroRVC # Hugging Face space name
token: ${{ secrets.HF_TOKEN }} # Hugging Face token
configuration: headers.yaml
|