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@v4 with: fetch-depth: 0 lfs: true - name: Push to Hugging Face env: HF_TOKEN: ${{ secrets.HF_TOKEN }} run: | git config --global user.name "GitHub Actions" git config --global user.email "actions@github.com" git remote add space https://mobadara:$HF_TOKEN@huggingface.co/spaces/mobadara/precision-diagnostics-xai git push --force space main