name: Deploy to HF Spaces on: push: branches: [master] jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 with: fetch-depth: 0 # Fetch all history for all branches and tags - name: Push to HF Space env: HF_TOKEN: ${{ secrets.HF_TOKEN }} HF_SPACE: ${{ secrets.HF_SPACE }} run: | git config --global user.email "github-actions[bot]@users.noreply.github.com" git config --global user.name "github-actions[bot]" git remote add space https://pavan-naik:$HF_SPACE@huggingface.co/spaces/pavan-naik/RecipeGenie git push space master:main --force