Install pdflatex so that the manual can be built.

This commit is contained in:
Stian Grenborgen 2022-06-04 10:41:14 +02:00
parent 33b7ab2de0
commit f13747080b
1 changed files with 6 additions and 1 deletions

View File

@ -31,11 +31,16 @@ jobs:
shell: bash
run: |
ant -noinput -buildfile build.xml testall
- name: Install pdflatex
shell: bash
run: |
sudo apt-get install -y texlive-latex-base
- name: Build artifacts
shell: bash
run: |
ant -noinput -buildfile build.xml -Dfreecol.version=$FREECOL_VERSION -Dprint.manual.is.up.to.date=true -Dprint.devmanual.is.up.to.date=true dist
ant -noinput -buildfile build.xml -Dfreecol.version=$FREECOL_VERSION dist
env:
FREECOL_VERSION: ${{ github.event.inputs.release_version }}