latex package hell #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🌲📄 Forester and PDF | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'README.md' | |
jobs: | |
forester: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set-up OCaml | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: "5.1" | |
- name: Install dependencies | |
run: sudo apt install libev-dev | |
- name: Install Forester | |
run: opam install forester | |
- name: Update environment | |
run: eval $(opam env) | |
- name: Build forest | |
run: opam exec -- forester build forest.toml | |
- name: Install TinyTeX | |
uses: r-lib/actions/setup-tinytex@v2 | |
env: | |
TINYTEX_INSTALLER: TinyTeX | |
- name: Install additional LaTeX packages | |
run: | | |
tlmgr update --self | |
tlmgr install ifthen fontenc microtype mathtools amscd etoolbox mathalfa csquotes fancyhdr biblatex titlesec Baskervaldx | |
- name: Build PDF | |
run: | |
cd latex/main.tex | |
mv main.pdf ../output/fga.pdf | |
- name: Deploy to build branch | |
uses: JamesIves/github-pages-deploy-action@3.6.2 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: build | |
FOLDER: output |