We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 480cbfc commit b3b88edCopy full SHA for b3b88ed
.github/workflows/install/action.yml
@@ -77,3 +77,12 @@ runs:
77
sudo ln -s $(which true) /usr/local/bin/qpdf
78
sudo ln -s $(which true) /usr/local/bin/checkbashisms
79
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}
0 commit comments