Skip to content

Commit 4f7f4d7

Browse files
committed
add QUARTO_PRINT_STACK=true to actions by default
1 parent 2cd3138 commit 4f7f4d7

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

publish/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ runs:
4242
- name: 'Publish'
4343
shell: bash
4444
env:
45+
QUARTO_PRINT_STACK: true
4546
CONNECT_SERVER: ${{ inputs.CONNECT_SERVER }}
4647
CONNECT_API_KEY: ${{ inputs.CONNECT_API_KEY }}
4748
NETLIFY_AUTH_TOKEN: ${{ inputs.NETLIFY_AUTH_TOKEN }}

render/action.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ runs:
1313
using: 'composite'
1414
steps:
1515
- name: 'Render'
16+
env:
17+
QUARTO_PRINT_STACK: true
1618
run: |
1719
if [ "${{ inputs.to }}" == "" ]; then
1820
quarto render ${{ inputs.path }}

setup/action.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ runs:
9292
echo "Quarto Installed !"
9393
shell: bash
9494
- name: 'Install TinyTeX'
95+
env:
96+
QUARTO_PRINT_STACK: true
9597
if: ${{ inputs.tinytex == 'true'}}
9698
run: |
9799
quarto install tool tinytex --log-level warning

0 commit comments

Comments
 (0)