diff --git a/.github/workflows/render.yml b/.github/workflows/render.yml index 84679a3..ad9e9a6 100644 --- a/.github/workflows/render.yml +++ b/.github/workflows/render.yml @@ -22,12 +22,19 @@ jobs: uses: quarto-dev/quarto-actions/setup@v2 env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: + # with: # To install LaTeX to build PDF book - tinytex: true + # tinytex: true # uncomment below and fill to pin a version # version: SPECIFIC-QUARTO-VERSION-HERE - + + - name: Set up TinyTeX manually + run: | + quarto install tinytex --update-path + echo "" >> temp.qmd + quarto render temp.qmd --to=pdf --template=_assets/suntemp-tikz.tex + # To import libraries in advance for tikz image generation + # add software dependencies here and any libraries # From https://github.com/actions/setup-python