Skip to content

Commit 4e04567

Browse files
committed
add tic.R
1 parent 0c17ed6 commit 4e04567

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.Rbuildignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
^README-.*\.png$
66
^.travis.yml
77
^appveyor\.yml$
8+
^tic\.R$

tic.R

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
get_stage("after_success") %>%
2+
add_step(step_hello_world()) %>%
3+
add_step(step_run_covr())
4+
5+
get_stage("deploy") %>%
6+
add_step(step_install_ssh_keys()) %>%
7+
add_step(step_add_to_known_hosts("github.com")) %>%
8+
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

Comments
 (0)