get_build_artifacts {circle} | R Documentation |
Get Build Artifacts of a Specific Job
Description
Retrieve artifacts from a specific build.
Usage
get_build_artifacts(
job_id = NULL,
repo = github_info()$name,
user = github_info()$owner$login,
vcs_type = "gh",
api_version = "v2"
)
Arguments
job_id |
|
repo |
|
user |
|
vcs_type |
|
api_version |
|
Value
An object of class circle_api
with the following elements
-
content
(queried content) -
path
(API request) -
response
(HTTP response information)
Examples
## Not run:
job_id <- get_jobs()[[1]]$id
get_build_artifacts(job_id)
## End(Not run)
[Package circle version 0.7.2 Index]