From c153b73da331e27f9d2e247838e622b0c6156356 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 11 Sep 2025 12:07:59 +0200 Subject: [PATCH] Install Ubuntu package "tth" for use by make_docs I've seen this in package CI logs several times now: Use of uninitialized value $whichtth in scalar chomp at ../../../etc/convert.pl line 2076. Use of uninitialized value $whichtth in pattern match (m//) at ../../../etc/convert.pl line 2077. Use of uninitialized value $whichtth in concatenation (.) or string at ../../../etc/convert.pl line 2078. !! tth: not in path. --- action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 8fa2678..6d38766 100644 --- a/action.yml +++ b/action.yml @@ -13,11 +13,15 @@ inputs: runs: using: "composite" steps: + - name: "Install tth (for old-style documentation)" + shell: bash + run: | + sudo apt-get update + sudo apt-get install --no-install-recommends tth - name: "Install TeX Live" if: ${{ inputs.use-latex == 'true' }} shell: bash run: | - sudo apt-get update sudo apt-get install --no-install-recommends texlive-latex-base texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended - name: "Check for GAP manual" shell: bash