Spring-0/face-censor
6
1name: Sync with Hugging Face Hub2 3on:4 push:5 branches:6 - main7 8jobs:9 build:10 runs-on: ubuntu-latest11 12 steps:13 - name: Checkout repo14 uses: actions/checkout@v415 16 - name: Install Hugging Face CLI17 run: pip install -U "huggingface_hub[cli]"18 19 - name: Upload to Hugging Face Space20 env:21 HF_TOKEN: ${{ secrets.HF_TOKEN }}22 run: |23 hf upload Spring-0/face-censor . . \24 --repo-type space \25 --token "$HF_TOKEN"