diff options
| author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2024-03-04 17:43:45 +0100 |
|---|---|---|
| committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2025-06-15 01:30:24 +0200 |
| commit | cb915a0435879d8d83b4b822e0b6f349b3263a0c (patch) | |
| tree | 8a378e50e4c3484d4386e6c36cff9d51280995ce | |
| parent | b29b3e86a171a97ca55d00507728820204eb4aa8 (diff) | |
| download | haunt-blog-cb915a0435879d8d83b4b822e0b6f349b3263a0c.tar.gz haunt-blog-cb915a0435879d8d83b4b822e0b6f349b3263a0c.tar.bz2 haunt-blog-cb915a0435879d8d83b4b822e0b6f349b3263a0c.zip | |
Makefile: Add deploy target.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
| -rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -26,7 +26,7 @@ HAUNT ?= $(GUIX_SHELL) --with-patch=guile=patches/$(GUILE_PATCH) haunt -- haunt SENTINEL = -.PHONY: all build generate-wordpress-articles help serve +.PHONY: all build deploy generate-wordpress-articles help serve PAGES = \ wordpress/pages/replicant_blog_page_8.html \ @@ -104,6 +104,9 @@ markdown: html build: $(HAUNT) build +deploy: build + rsync -av site/ root@git.replicant.us:/var/www/blog.test.replicant.us/ + help: @printf "%s\n\t%s\n\t%s\n\t%s\n\t%s\n" \ "Available commands:" \ |
