khuedoan-homelab/docs/Makefile

25 lines
444 B
Makefile
Raw Normal View History

2021-04-19 22:35:05 +07:00
.POSIX:
default: book
2021-06-20 18:24:23 +07:00
.PHONY: diagrams
diagrams:
cd diagrams \
2021-08-23 00:49:34 +07:00
&& python3 -m venv .venv \
&& pip3 install -r requirements.txt \
&& python3 *
.PHONY: book
2021-07-17 00:02:28 +07:00
book:
mdbook build .
2021-08-30 13:02:00 +07:00
.PHONY: deploy
deploy:
@echo "Deploying to GitHub Pages"
git worktree add /tmp/book gh-pages
cp -rp book/* /tmp/book/
cd /tmp/book \
&& git commit --all --message "Updates" || echo "No changes to commit" \
&& git push
git worktree remove /tmp/book