diff --git a/.github/workflows/release-book-website.yml b/.github/workflows/release-book-website.yml index a64be905..489f1a91 100644 --- a/.github/workflows/release-book-website.yml +++ b/.github/workflows/release-book-website.yml @@ -64,7 +64,7 @@ jobs: options: -v ${{ github.workspace }}:/app run: | cd /app/book - make -j bake + make bake - name: Release baked book to S3 uses: shallwefootball/s3-upload-action@master with: diff --git a/makefile b/makefile index 6e90ac52..e10830d1 100644 --- a/makefile +++ b/makefile @@ -24,7 +24,7 @@ build_pdf: $(DOCKER_CMD) "cd /opt/repo/book && make" bake: - $(DOCKER_CMD) "cd /opt/repo/book && make -j bake" + $(DOCKER_CMD) "cd /opt/repo/book && make bake" website: $(DOCKER_CMD) "cd /opt/repo/book && make website"