tic (version 0.2.13.9015)

do_pkgdown: Build pkgdown documentation

Description

do_pkgdown() builds and optionally deploys a pkgdown site and adds default steps to the "install", "before_deploy" and "deploy" stages:

  1. step_install_deps() in the "install" stage, using the repos argument.

  2. step_setup_ssh() in the "before_deploy" to setup the upcoming deployment (if deploy is set),

  3. step_setup_push_deploy() in the "before_deploy" stage (if deploy is set),

  4. step_build_pkgdown() in the "deploy" stage, forwarding all ... arguments.

  5. step_do_push_deploy() in the "deploy" stage.

By default, the docs/ directory is deployed to the gh-pages branch, keeping the history.

Usage

do_pkgdown(..., deploy = NULL, orphan = FALSE, checkout = TRUE,
  repos = repo_default(), path = "docs", branch = "gh-pages",
  remote_url = NULL, commit_message = NULL, commit_paths = ".")

Arguments

...
deploy

[flag] If TRUE, deployment setup is performed before building the pkgdown site, and the site is deployed after building it. Set to FALSE to skip deployment. By default (if deploy is NULL), deployment happens if the following conditions are met:

  1. The repo can be pushed to (see ci_can_push()).

  2. The branch argument is NULL (i.e., if the deployment happens to the active branch), or the current branch is master (see ci_get_branch()).

orphan

[flag] Create and force-push an orphan branch consisting of only one commit? This can be useful e.g. for path = "docs", branch = "gh-pages", but cannot be applied for pushing to the current branch.

checkout

[flag] Check out the current contents of the repository? Defaults to TRUE, set to FALSE if the build process relies on existing contents or if you deploy to a different branch.

repos

CRAN-like repositories to install from, defaults to repo_default().

path, branch

By default, this macro deploys the docs directory to the gh-pages branch. This is different from step_push_deploy().

remote_url

[string] The URL of the remote Git repository to push to, defaults to the current GitHub repository.

commit_message

[string] Commit message to use, defaults to a useful message linking to the CI build and avoiding recursive CI runs.

commit_paths

[character] Restrict the set of directories and/or files added to Git before deploying. Default: deploy all files.

See Also

Other macros: do_bookdown, do_package_checks

Examples

Run this code
# NOT RUN {
dsl_init()

do_pkgdown()

dsl_get()
# }

Run the code above in your browser using DataCamp Workspace