From 3d16d58817aebc7eef791a1a20cd18e4e2bd2ee9 Mon Sep 17 00:00:00 2001 From: Hendrik Kleinwaechter Date: Wed, 29 May 2024 09:02:23 +0200 Subject: [PATCH] Remove parallel option from make (#368) This temporarily removes the parallel option from make to ensure that we can release the booklet. I am not sure why it causes an issue. Baking the book without it causes no problem. --- .github/workflows/release-book-website.yml | 2 +- makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-book-website.yml b/.github/workflows/release-book-website.yml index a64be90..489f1a9 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 6e90ac5..e10830d 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"