pb_delete | R Documentation |
Delete an asset attached to a release
pb_delete(
file = NULL,
repo = guess_repo(),
tag = "latest",
.token = gh::gh_token()
)
file |
file(s) to be deleted from the release. If |
repo |
Repository name in format "owner/repo". Defaults to |
tag |
tag for the GitHub release to which this data should be attached. |
.token |
GitHub authentication token, see |
TRUE
(invisibly) if a file is found and deleted.
Otherwise, returns NULL
(invisibly) if no file matching the name was found.
## Not run:
readr::write_tsv(mtcars, "mtcars.tsv.gz")
## Upload
pb_upload("mtcars.tsv.gz",
repo = "cboettig/piggyback-tests",
overwrite = TRUE)
pb_delete("mtcars.tsv.gz",
repo = "cboettig/piggyback-tests",
tag = "v0.0.1")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.