🤡 Add "make bake" command (#97)

I feel like since this is bread related, release should be renamed to
"bake". So `make bake` will bake you the final book versions.
This commit is contained in:
Hendrik Kleinwaechter
2023-05-21 20:19:56 +02:00
committed by GitHub
parent c2d5e88377
commit 6c8839da87
5 changed files with 16 additions and 16 deletions

View File

@@ -2,9 +2,9 @@
build_book: build_docker_image
docker run -it -v .:/opt/repo the-sourdough-framework /bin/bash -c "cd /opt/repo/book && make build_pdf"
.PHONY: release
release: build_docker_image
docker run -it -v .:/opt/repo the-sourdough-framework /bin/bash -c "cd /opt/repo/book && make release"
.PHONY: bake
bake: build_docker_image
docker run -it -v .:/opt/repo the-sourdough-framework /bin/bash -c "cd /opt/repo/book && make bake"
.PHONY: build_docker_image
build_docker_image: