-
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
issues with quarto files on Windows #2852
Comments
This error is similar to #2844. Quarto is being installed by the action, but then the exectuable isn't found. |
Can you try re-running the action with: |
@jayhesselberth I'm sorry to say it still fails on windows:
I did manage to fix the R CMD check error, which turned out to be from putting |
Can you try one more time, but set the following in the workflow file (i.e., don't set
|
@jayhesselberth didn't seem to work: https://github.com/d-morrison/test.package/actions/runs/13599340836/job/38022696625 |
I'm having trouble getting
pkgdown::build_site()
to run on Windows for packages with quarto content.Here's a reprex, where I set up two GHA workflows:
.github/workflows/pkgdown.ubuntu.yaml
(runs-on: ubuntu-latest
) succeeds.github/workflows/pkgdown.windows.yaml
(runs-on: windows-latest
) fails.github/workflows/R-CMD-check.yaml
:windows-latest
also fails, for what looks like the same reasonThe two pkgdown workflows are mostly vanilla copies of https://github.com/r-lib/actions/blob/v2-branch/examples/pkgdown.yaml;
I think the only changes are:
- uses: r-lib/actions/setup-r-dependencies@v2
step, I replacedextra-packages: any::pkgdown, local::.
withextra-packages: r-lib/pkgdown, local::., any::quarto
, to check whether the dev version of pkgdown might help and to make sure quarto-r got installed (not sure if quarto-r is even used in this workflow)pkgdown::build_site()
also fails on my local environment.Thanks for any tips on how to solve!
The text was updated successfully, but these errors were encountered: