name: Sync to Hugging Face hub on: push: branches: [main] # 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_AP: ${{ secrets.HF_TOKEN_AP }} HF_TOKEN_SK: ${{ secrets.HF_TOKEN_SK }} run: | git push https://anuj-panthri:$HF_TOKEN_AP@huggingface.co/spaces/anuj-panthri/puppeteer-api-1 main --force git push https://anuj-panthri:$HF_TOKEN_AP@huggingface.co/spaces/anuj-panthri/puppeteer-api-2 main --force git push https://shivam-kala:$HF_TOKEN_SK@huggingface.co/spaces/shivam-kala/puppeteer-api-3 main --force git push https://shivam-kala:$HF_TOKEN_SK@huggingface.co/spaces/shivam-kala/puppeteer-api-4 main --force