From 53939b725371a414bab16eb98cd223ca7233ab7f Mon Sep 17 00:00:00 2001 From: Liz Dobbins <30326065+eldobbins@users.noreply.github.com> Date: Wed, 28 Aug 2024 18:15:15 -0800 Subject: [PATCH] hack quarto-publish.yml to get around runner problem --- .github/workflows/quarto-publish.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/quarto-publish.yml b/.github/workflows/quarto-publish.yml index 6e0951a..1cffb1c 100644 --- a/.github/workflows/quarto-publish.yml +++ b/.github/workflows/quarto-publish.yml @@ -62,7 +62,13 @@ jobs: env: QUARTO_PROFILE: html GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - + + - name: Check chromium + # hack from https://github.com/quarto-dev/quarto-actions/issues/45 + run: | + echo $(which chromium-browser) + $(which chromium-browser) --headless https://www.chromestatus.com + - name: Render PDF uses: quarto-dev/quarto-actions/render@v2 with: @@ -102,4 +108,4 @@ jobs: git config user.name "GitHub Action" git add -f *.pdf git commit -m "Automatically generated PDF" -a || echo "No changes to commit" - git push origin gh-pages \ No newline at end of file + git push origin gh-pages