From 351bcf96aae4eb0a99df31752fef259bbe27a566 Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Mon, 19 Feb 2024 17:45:26 -0700 Subject: [PATCH] Fix boolean check. --- setup-markdown-to-pdf/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup-markdown-to-pdf/action.yml b/setup-markdown-to-pdf/action.yml index e55b2e7..af1d769 100644 --- a/setup-markdown-to-pdf/action.yml +++ b/setup-markdown-to-pdf/action.yml @@ -32,7 +32,7 @@ runs: - run: tlmgr --version shell: pwsh # Needed because tlmgr is .bat file on Windows - name: Set TeX Live repository - if: inputs.use-historic-texlive-distribution == 'false' + if: inputs.use-historic-texlive-distribution == 'true' run: tlmgr option repository ftp://ftp.math.utah.edu/pub/tex/historic/systems/texlive/${{ inputs.tinytex-version-year }}/tlnet-final shell: pwsh # Needed because tlmgr is .bat file on Windows - name: Update tlmgr