|
name: Sync to Hugging Face Space |
|
on: |
|
push: |
|
branches: [main] |
|
workflow_dispatch: |
|
|
|
jobs: |
|
sync-to-hub: |
|
runs-on: ubuntu-latest |
|
steps: |
|
- uses: actions/checkout@v3 |
|
with: |
|
fetch-depth: 0 |
|
lfs: true |
|
|
|
|
|
- name: Replace README.md for Hugging Face |
|
run: | |
|
cp README_HF.md README.md |
|
|
|
|
|
- name: Push to Hugging Face Space |
|
env: |
|
HF_TOKEN: ${{ secrets.HF_TOKEN }} |
|
run: | |
|
git remote add space https://huggingface.co/spaces/ruslanmv/Real-Time-Quiz-Application || true |
|
git push --force https://ruslanmv:${HF_TOKEN}@huggingface.co/spaces/ruslanmv/Real-Time-Quiz-Application main |