Skip to content

Sync to Hugging Face hub #73

Sync to Hugging Face hub

Sync to Hugging Face hub #73

Workflow file for this run

name: Sync to Hugging Face hub
on:
workflow_run:
workflows: ["Build Docker Image"]
types:
- completed
# to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
sync-to-hub:
runs-on: ubuntu-latest
steps:
- name: Push to hub
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
HF_USERNAME: hf4all
SPACE_NAME: bingo
run: |
git clone https://$HF_USERNAME:[email protected]/spaces/$HF_USERNAME/$SPACE_NAME huggingface
cd huggingface
git config user.name hf4all
git config user.email [email protected]
git commit -am "auto build" --amend
git push https://$HF_USERNAME:[email protected]/spaces/$HF_USERNAME/$SPACE_NAME main -f