Skip to content

Commit

Permalink
Add action to build documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasHoefer committed Feb 28, 2024
1 parent 7a909ee commit 9557dcb
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/latex.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build Documentation
on: [push]
jobs:
build_latex:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v3
- name: Compile LaTeX document
uses: xu-cheng/latex-action@v2
with:
latexmk_use_lualatex: true
work_in_root_file_dir: true
root_file: doc/poset.tex
- name: Upload PDF file
uses: actions/upload-artifact@v3
with:
name: PDF
path: notes.pdf

0 comments on commit 9557dcb

Please sign in to comment.