From: Silvio Rhatto Date: Fri, 23 Aug 2024 16:52:39 +0000 (-0300) Subject: Feat: Makefile: web_deploy target X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=774ff5a8c652cd8709346e7b9f9651d6a5eadcd7;p=hydra.git Feat: Makefile: web_deploy target --- diff --git a/Makefile b/Makefile index 6e28c6c..ee069d6 100644 --- a/Makefile +++ b/Makefile @@ -4,9 +4,11 @@ .PHONY: publish docs -publish: docs +web_deploy: @rsync -avz --delete site/ hydra:/var/sites/hidra/www/ @rsync -avz --delete slides/ hydra:/var/sites/hidra/www/slides/ docs: @mkdocs build + +publish: docs web_deploy