Skip to content

Commit

Permalink
Remove parallel option from make
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
hendricius committed May 29, 2024
1 parent 24a9f5c commit 3ce897f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-book-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 3ce897f

Please sign in to comment.