File size: 677 Bytes
6d4e2b9 f2a478c 6d4e2b9 abebc8f f682505 2bccea8 f2a478c eecb146 ea50b02 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
name: Sync to Hugging Face hub
on:
push:
branches: [milestone-3]
# 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: Push to hub
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
run:
git config user.name "$GITHUB_ACTOR" &&
git config user.email "<>"
&& git switch main
&& git merge origin/milestone-3
&& git push
&& git push https://jbraha:$HF_TOKEN@huggingface.co/spaces/jbraha/aiproject
|