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 0c17ed6 commit 4e04567Copy full SHA for 4e04567
.Rbuildignore
@@ -5,3 +5,4 @@
5
^README-.*\.png$
6
^.travis.yml
7
^appveyor\.yml$
8
+^tic\.R$
tic.R
@@ -0,0 +1,14 @@
1
+get_stage("after_success") %>%
2
+ add_step(step_hello_world()) %>%
3
+ add_step(step_run_covr())
4
+
+get_stage("deploy") %>%
+ add_step(step_install_ssh_keys()) %>%
+ add_step(step_add_to_known_hosts("github.com")) %>%
+ add_step(step_test_ssh())
9
10
+if (ci()$is_tag() && Sys.getenv("BUILD_PKGDOWN") != "") {
11
+ get_stage("deploy") %>%
12
+ add_step(step_build_pkgdown()) %>%
13
+ add_step(step_push_deploy(path = "docs", branch = "gh-pages"))
14
+}
0 commit comments