erynwells.me/Makefile

11 lines
227 B
Makefile

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