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 94f300b commit f10b83eCopy full SHA for f10b83e
.github/workflows/pkgdown.yaml
@@ -43,6 +43,7 @@ jobs:
43
any::rmarkdown
44
any::Rcpp
45
any::RcppEigen
46
+ any::RcppParallel
47
any::rstan
48
any::rstanarm
49
any::rstantools
@@ -51,8 +52,18 @@ jobs:
51
52
any::knitr
53
needs: website
54
55
+ - uses: actions/cache@v4
56
+ with:
57
+ path: vignettes/**/_cache
58
+ key: knitr-${{ runner.os }}-${{ hashFiles('vignettes/**/*.Rmd') }}
59
+
60
- name: Build site
- run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
61
+ run: |
62
+ pkgdown::build_site_github_pages(
63
+ new_process = FALSE,
64
+ install = FALSE,
65
+ override = list(lazy = TRUE)
66
+ )
67
shell: Rscript {0}
68
69
- name: Deploy to GitHub pages 🚀
0 commit comments