mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-07 14:03:01 +07:00
24 lines
398 B
Makefile
24 lines
398 B
Makefile
.POSIX:
|
|
|
|
default: book
|
|
|
|
.PHONY: diagrams
|
|
diagrams:
|
|
cd diagrams \
|
|
&& 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
|