Skip to content

Commit

Permalink
🚑 tic²
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosci committed Feb 25, 2019
1 parent f1253d1 commit e34a5c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tic.R
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ if (Sys.getenv("id_rsa") != "") {

if (ci()$get_branch() == "master") {
get_stage("deploy") %>%
add_code_step(remotes::install_version("roxygen2", "6.1.0")) %>%
add_code_step(rmarkdown::render("README.Rmd")) %>%
add_step(step_push_deploy(commit_paths = "README.md", branch = "master")) %>%
add_code_step(devtools::load_all(".")) %>%
add_code_step(devtools::document(".")) %>%
add_step(step_push_deploy(commit_paths = c("man/", "DESCRIPTION", "NAMESPACE", branch = "master"))) %>%
add_code_step(remotes::install_version("roxygen2", "6.1.0")) %>%
add_step(step_build_pkgdown(run_dont_run = TRUE)) %>%
add_step(step_push_deploy("docs", "gh-pages"))
}
Expand Down

0 comments on commit e34a5c7

Please sign in to comment.