divyam.dev/Makefile
Divyam Ahuja 2e5580024f
Some checks are pending
Deploy Hugo site to Pages / build (push) Waiting to run
Deploy Hugo site to Pages / deploy (push) Blocked by required conditions
feat: complete unified hugo and typst resume workflow with github actions
2026-05-08 14:55:12 +05:30

25 lines
490 B
Makefile

.PHONY: all serve build resume clean
# Build everything
all: resume build
# Start Hugo dev server
serve:
hugo server -D
# Build static site
build:
hugo --gc --minify
# Compile resume PDF from YAML via Typst
resume:
typst compile --root . --font-path resume/ resume/main.typ static/resume.pdf
# Watch resume for changes
resume-watch:
typst watch --root . --font-path resume/ resume/main.typ static/resume.pdf
# Clean build artifacts
clean:
rm -rf public/
rm -f static/resume.pdf