File tree Expand file tree Collapse file tree 3 files changed +9
-14
lines changed Expand file tree Collapse file tree 3 files changed +9
-14
lines changed Original file line number Diff line number Diff line change 7777 sudo ln -s $(which true) /usr/local/bin/qpdf
7878 sudo ln -s $(which true) /usr/local/bin/checkbashisms
7979 shell : bash
80+
81+ - name : " Band aid: install rmarkdown from GitHub in older R"
82+ run : |
83+ try(
84+ if (getRversion() < "3.5" && packageVersion("rmarkdown") < "2.13") {
85+ pak::pak("rstudio/rmarkdown")
86+ }
87+ )
88+ shell : Rscript {0}
Original file line number Diff line number Diff line change @@ -3,13 +3,6 @@ name: 'Action to build a pkgdown website'
33runs :
44 using : " composite"
55 steps :
6- - name : " Band aid: install rmarkdown from GitHub in older R"
7- run : |
8- if (getRversion() < "3.5" && packageVersion("rmarkdown") < "2.13") {
9- pak::pak("rstudio/rmarkdown")
10- }
11- shell : Rscript {0}
12-
136 - name : Build site
147 run : |
158 pkgdown::build_site()
Original file line number Diff line number Diff line change @@ -3,13 +3,6 @@ name: 'Action to deploy a pkgdown website'
33runs :
44 using : " composite"
55 steps :
6- - name : " Band aid: install rmarkdown from GitHub in older R"
7- run : |
8- if (getRversion() < "3.5" && packageVersion("rmarkdown") < "2.13") {
9- pak::pak("rstudio/rmarkdown")
10- }
11- shell : Rscript {0}
12-
136 - name : Deploy site
147 run : |
158 pkgdown::deploy_to_branch(new_process = FALSE)
You can’t perform that action at this time.
0 commit comments