We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99467f0 commit 8ee4d09Copy full SHA for 8ee4d09
render/action.yml
@@ -12,6 +12,14 @@ inputs:
12
runs:
13
using: 'composite'
14
steps:
15
+ # The Check Chromium step appears necessary to avoid a crash/hang when rendering PDFs
16
+ # https://github.com/quarto-dev/quarto-actions/issues/45#issuecomment-1562599451
17
+ #
18
+ # chromium is installed in the ubuntu 21 runners in GHA, so no need to install it
19
+ - name: 'Check Chromium'
20
+ run: |
21
+ echo $(which chromium-browser)
22
+ $(which chromium-browser) --headless https://www.chromestatus.com
23
- name: 'Render'
24
env:
25
QUARTO_PRINT_STACK: true
0 commit comments