-
Notifications
You must be signed in to change notification settings - Fork 336
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to change verbosity in pkgdown GitHub actions #2844
Comments
Yeah, we don't pass Can you try simplifying your quarto header down to the minimum? wondering if something in your more complex header is causing the problem. something like: title: quarto vignettes
vignette: >
%\VignetteIndexEntry{quarto vignettes}
%\VignetteEngine{quarto::html}
%\VignetteEncoding{UTF-8} |
Thanks for the quick reply. I've tried with
but I get the same problem. |
I also tried adding
to _pkgdown.yaml in order to emulate Quarto's
but to no effect. |
It doesn't look like you install quarto in https://github.com/HUGLeipzig/kitesquare/blob/main/.github/workflows/pkgdown.yaml ? |
Quarto (the CLI) is indeed installed by the I was able to get a test quarto vignette to build in another package only after including quarto (the R library) in the website config portion of
@hadley We probably need to document that this step needs to be done in order for quarto vignettes to build? pkgdown itself is not affected because quarto is in |
Now that I think about it, quarto is supposed to auto-install if you use any |
Actaully, quarto in |
Thanks! Unfortunately, the error persists :-( |
I would try running quarto build directly in GHA with the followin, which should print the error.
|
For my repository (https://github.com/HUGLeipzig/kitesquare), I have followed https://r-pkgs.org/website.html to set up pkgdown with GitHub Actions in order to build a website at https://hugleipzig.github.io/kitesquare/. Everything appears to be in order. Yet for some reason, pkgdown fails the building step (https://github.com/HUGLeipzig/kitesquare/actions/runs/12929841229/job/36060042956):
I can build the vignette locally with Quarto without problems. I am trying to figure out what is going wrong, and came across the suggestion in the log to
Is it possible to pass
quiet=FALSE
frompkgdown::build_site_github_pages
down topkgdown:::build_quarto_articles
somehow, or to change the verbosity level globally somehow?The text was updated successfully, but these errors were encountered: