Skip to content

Commit

Permalink
pdf: ignore warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
casperdcl committed Aug 18, 2023
1 parent 844c0e7 commit 7c0e300
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# see https://github.com/actions/starter-workflows/blob/main/pages/jekyll.yml
name: build & deploy site
name: site
on:
push:
workflow_dispatch:
Expand All @@ -26,7 +26,11 @@ jobs:
jupyter-book build --warningiserror --nitpick .
jupyter-book build --builder latex .
- uses: xu-cheng/latex-action@v2
with: {working_directory: _build/latex, root_file: book.tex}
with:
working_directory: _build/latex
root_file: book.tex
args: -pdf -dvi- -ps- -file-line-error -f -interaction=nonstopmode
continue-on-error: true
- run: cp _build/latex/book.pdf _build/html/
- uses: actions/upload-pages-artifact@v2
with: {path: _build/html}
Expand Down

0 comments on commit 7c0e300

Please sign in to comment.