Sync to Hugging Face hub #242
This file contains 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 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:$HF_TOKEN@huggingface.co/spaces/$HF_USERNAME/$SPACE_NAME huggingface | |
cd huggingface | |
git config user.name hf4all | |
git config user.email hf4all@gmail.com | |
echo "Last deploy time: $(date)" > DEPLOY_INFO.txt | |
git add DEPLOY_INFO.txt | |
git commit -m "auto deploy $(date)" | |
git push https://$HF_USERNAME:$HF_TOKEN@huggingface.co/spaces/$HF_USERNAME/$SPACE_NAME main -f |