khuedoan-homelab/docs/Makefile
2021-09-04 14:13:16 +07:00

27 lines
500 B
Makefile

.POSIX:
default: book
.PHONY: diagrams
diagrams:
cd diagrams \
&& python3 -m venv .venv \
&& source .venv/bin/activate \
&& pip3 install -r requirements.txt \
&& python3 *.py
.PHONY: book
book: diagrams
mdbook build .
.PHONY: deploy
deploy:
@echo "Deploying to GitHub Pages"
git worktree add /tmp/book gh-pages
cp -rp book/* /tmp/book/
cd /tmp/book \
&& git add . \
&& git commit --message "Updates" || echo "No changes to commit" \
&& git push
git worktree remove /tmp/book