Add a Makefile with a deploy target

This commit is contained in:
Eryn Wells 2022-04-13 07:47:02 -07:00
parent 653373a5eb
commit cb3818fd57

9
Makefile Normal file
View file

@ -0,0 +1,9 @@
# Eryn Wells <eryn@erynwells.me>
DEPLOY_LOCATION=eryn@nutmeg.erynwells.me:/srv/www/erynwells.me/html
.PHONY: deploy
deploy:
hugo
rsync -avz --no-times --no-perms --delete public/ $(DEPLOY_LOCATION)