Create a staging directory for deployment files
deploy_tar.Rd
Usage
deploy_tar(
deploy_path = "deploy",
use_renv = TRUE,
copy_r_environ = TRUE,
copy_r_profile = TRUE,
copy_renv_lock = TRUE,
copy_files = NULL,
rebuild = TRUE,
remove_previous_builds = TRUE,
lockfile_path = "renv.lock"
)
Arguments
- deploy_path
chr
directory in which to stage deployment files- use_renv
lgl
whether to use the renv.lock &golem::add_dockerfile_with_renv
(TRUE
) or the DESCRIPTIONgolem::add_dockerfile
- copy_r_environ
lgl
Whether to include the .Renviron file- copy_r_profile
lgl
Whether to include the .Rprofile file- copy_renv_lock
lgl
Whether to include the renv.lock file- copy_files
chr
vector of files to copy in addition to default.- rebuild
lgl
Whether to rebuild the tar.gz- remove_previous_builds
lgl
Whether to remove previous build files fromdeploy_path
folder
Value
msg
All files are updated based on other arguments and an informative message indicates files and
See also
Other deploy:
deploy_stage()