| name: Sync to Hugging Face Spaces |
|
|
| on: |
| push: |
| branches: [main] |
|
|
| |
| workflow_dispatch: |
|
|
| jobs: |
| sync-to-hub: |
| runs-on: ubuntu-latest |
| steps: |
| - name: Checkout code |
| uses: actions/checkout@v4 |
| with: |
| fetch-depth: 0 |
| lfs: true |
|
|
| - name: Push to HF |
| env: |
| HF_TOKEN: ${{ secrets.HF_TOKEN }} |
| run: | |
| # Web3CyberServices Infrastructure Automation |
| git config --global user.name "GitHub Actions" |
| git config --global user.email "actions@github.com" |
| |
| |
| git remote add space https://git:$HF_TOKEN@huggingface.co/spaces/Web3cyberservices/Web3CyberAgent |
| |
| |
| git push --force space main |
|
|