Skip to content

Build the book

Build the book #14

Workflow file for this run

name: Build the book
on: workflow_dispatch
jobs:
texlive:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install pandoc
uses: pandoc/actions/setup@v1
with:
version: 2.11
- name: Run pandoc
run: pandoc --version
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
packages: >
scheme-basic latexmk collection-xetex
- name: Use TeX Live
run: |
git submodule update --init --recursive
./build-book.sh
cd book
latexmk -f -pdf -silent book.tex