| name: Sync to Hugging Face hub |
|
|
| on: |
| push: |
| branches: [main] |
| workflow_dispatch: |
|
|
| jobs: |
| sync-to-hub: |
| runs-on: ubuntu-latest |
| steps: |
| |
| - uses: actions/checkout@v3 |
| with: |
| fetch-depth: 0 |
| lfs: true |
|
|
| |
| - name: Push to Hugging Face Space |
| env: |
| HF_TOKEN: ${{ secrets.HF_TOKEN }} |
| HF_USERNAME: WpiCs553 |
| SPACE_NAME: Part-1 |
| run: | |
| git config --global user.email "action@github.com" |
| git config --global user.name "GitHub Action" |
| git remote add hf https://$HF_USERNAME:$HF_TOKEN@huggingface.co/spaces/$HF_USERNAME/$SPACE_NAME |
| git push hf main --force |
| |