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 ab19cfb commit 1a2f26fCopy full SHA for 1a2f26f
.Rbuildignore
@@ -22,3 +22,4 @@
22
^revdep$
23
^clang-.*
24
^\.vscode$
25
+^gfortran.*
tic.R
@@ -5,7 +5,11 @@ get_stage("install") %>%
5
add_step(step_install_cran("ranger")) %>%
6
add_step(step_install_github("mlr-org/mlr3pkgdowntemplate"))
7
8
-do_pkgdown()
+if (ci_on_ghactions() && ci_has_env("BUILD_PKGDOWN")) {
9
+ # creates pkgdown site and pushes to gh-pages branch
10
+ # only for the runner with the "BUILD_PKGDOWN" env var set
11
+ do_pkgdown()
12
+}
13
14
if (Sys.info()["sysname"] == "Linux") {
15
do_readme_rmd()
0 commit comments