Skip to content

Commit

Permalink
ignore command failure
Browse files Browse the repository at this point in the history
  • Loading branch information
finger563 committed May 31, 2024
1 parent 57c1ca6 commit 5bafce0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_and_publish_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ jobs:
cp -r _build/en/esp32/html/* ../docs/.
# go to the latex output
cd _build/en/esp32/latex/
# build once
pdflatex -interaction=batchmode refman
# build again to make sure page numbers and refs and such work
pdflatex -interaction=batchmode refman
# build once (ignore if command fails)
pdflatex -interaction=batchmode refman || true
# build again to make sure page numbers and refs and such work (ignore if command fails)
pdflatex -interaction=batchmode refman || true
# rename refman to espp_documentation.pdf
mv refman.pdf espp_documentation.pdf
Expand Down

0 comments on commit 5bafce0

Please sign in to comment.