From 4f7f4d7b4a61bc14dd0a9a11c6cb674ff54fb027 Mon Sep 17 00:00:00 2001 From: Carlos Scheidegger Date: Wed, 18 Jan 2023 08:58:08 -0700 Subject: [PATCH] add QUARTO_PRINT_STACK=true to actions by default --- publish/action.yml | 1 + render/action.yml | 2 ++ setup/action.yml | 2 ++ 3 files changed, 5 insertions(+) diff --git a/publish/action.yml b/publish/action.yml index e8bae1d..5826392 100644 --- a/publish/action.yml +++ b/publish/action.yml @@ -42,6 +42,7 @@ runs: - name: 'Publish' shell: bash env: + QUARTO_PRINT_STACK: true CONNECT_SERVER: ${{ inputs.CONNECT_SERVER }} CONNECT_API_KEY: ${{ inputs.CONNECT_API_KEY }} NETLIFY_AUTH_TOKEN: ${{ inputs.NETLIFY_AUTH_TOKEN }} diff --git a/render/action.yml b/render/action.yml index 546a402..27fc5fd 100644 --- a/render/action.yml +++ b/render/action.yml @@ -13,6 +13,8 @@ runs: using: 'composite' steps: - name: 'Render' + env: + QUARTO_PRINT_STACK: true run: | if [ "${{ inputs.to }}" == "" ]; then quarto render ${{ inputs.path }} diff --git a/setup/action.yml b/setup/action.yml index 7f9bbe1..8aec6cd 100644 --- a/setup/action.yml +++ b/setup/action.yml @@ -92,6 +92,8 @@ runs: echo "Quarto Installed !" shell: bash - name: 'Install TinyTeX' + env: + QUARTO_PRINT_STACK: true if: ${{ inputs.tinytex == 'true'}} run: | quarto install tool tinytex --log-level warning