forked from CONECT-INT/CONECT-INT.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
15 lines (12 loc) · 707 Bytes
/
Makefile
File metadata and controls
15 lines (12 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
default: deploy
sync:
rsync -av ../hugo_academic/content/post/2020-09-11_seminaire-thomas-serre content/event
rsync -av ../hugo_academic/content/authors/laurent-u-perrinet content/authors
rsync -av ../hugo_academic/content/authors/alberto-vergani content/authors
rsync -av ../hugo_academic/content/authors/frederic-y-chavane content/authors
rsync -av ../hugo_academic/content/authors/anna-montagnini content/authors
rsync -av ../hugo_academic/content/authors/emmanuel-dauce content/authors
pages:
git pull ; hugo ; git add . ; git commit -m "Build website" -a ; git push origin main
deploy: pages
cd public; git checkout main ; git add . ; git commit -m "Build website" -a ; git push origin main