.gitignore log/ #7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Sync to HuggingFace hub - parserPDF | |
| on: | |
| push: | |
| branches: [main] | |
| # assist: https://huggingface.co/docs/hub/en/spaces-github-actions | |
| ### git remote add space https://huggingface.co/spaces/HF_USERNAME/SPACE_NAME #Add space repo | |
| ### git remote add space https://huggingface.co/spaces/semmyk/parserPDF | |
| ### git push --force space main #force push to sync everything for the first time | |
| # to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| sync-to-hub: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| lfs: true | |
| - name: Push to hub | |
| env: | |
| HF_TOKEN: ${{ secrets.HF_TOKEN }} | |
| #run: git push https://HF_USERNAME:$HF_TOKEN@huggingface.co/spaces/HF_USERNAME/SPACE_NAME main | |
| run: git push https://semmyk:$HF_TOKEN@huggingface.co/spaces/semmyk/parserPDF main |