name: Sync to Hugging Face Hub on: push: branches: [main] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: jobs: sync-to-hub: runs-on: ubuntu-latest steps: - name: Checkout Code uses: actions/checkout@v3 with: fetch-depth: 0 lfs: true - name: Push to Hugging Face env: HF_TOKEN: ${{ secrets.HF_TOKEN }} run: | git config --global user.email "bot@example.com" git config --global user.name "Deployment Bot" git remote add hf https://Anish530:$HF_TOKEN@huggingface.co/spaces/Anish530/Spotix-API git push --force hf main