blob: a85c6b5f542824937cf9f66278a02cd9a81fc28f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
.PHONY: deploy
deploy:
git add .
git ci -m "UPD $(shell date '+%Y-%m-%d')"
git push
hugo --gc && rsync -avz --delete public/ neonxp@neonxp.ru:/var/www/neonxp.ru
post:
hugo new content posts/$(shell date '+%Y-%m-%d')-$(name)/index.md
|