read_the_room / .github /workflows /deploy-space.yml
Ilia-Iliev's picture
Upload folder using huggingface_hub
93f0cef verified
Raw
History Blame Contribute Delete
325 Bytes
name: Deploy to HF Space
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pip install huggingface_hub
- run: hf upload build-small-hackathon/read_the_room . . --repo-type=space
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}