pray's picture
Update main.yml
fcf76ca unverified
raw
history blame contribute delete
778 Bytes
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: Setup Git LFS
run: |
git lfs install
- name: Migrate model to LFS
run: |
git lfs migrate import --include="*.onnx" --everything --yes
- name: Push to hub
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
run: |
git remote add hf https://pray:$HF_TOKEN@huggingface.co/spaces/pray/face_matching_mvp || true
git fetch hf
git push hf main --force-with-lease