- PHONY: server build deploy
- server:
- hugo server --baseURL="http://pleasantprogrammer.com" --appendPort=false --buildDrafts
- build:
- hugo
- deploy: build
- git commit-tree -p master -m "updated" source:output | xargs git update-ref refs/heads/master
- git push
|