binary_release_table: Get Binary Release Table for a repository

Description Usage Arguments Value Examples

View source: R/binary_release_table.R

Description

Parses a remote and gets a table of binary releases

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
binary_release_table(repo, pat = NULL, force = FALSE, verbose = TRUE, ...)

binary_table_no_tags(
  repo,
  pat = NULL,
  force = FALSE,
  verbose = TRUE,
  mustWork = TRUE,
  ...
)

Arguments

repo

Remote repository name

pat

GitHub Personal Authentication Token (PAT)

force

if TRUE, then binary_table_no_tags will return the table even if no assets are in the release

verbose

print diagnostic messages

...

additional arguments to GET

mustWork

Does the command need to work? If fails, will error. But FALSE will try to pass appropriate missing data value

Value

data.frame of binary releases

Examples

1
2
3
4
5
6
7
repo = "stnava/ANTsR"
binary_release_table(repo)
binary_release_table("muschellij2/ANTsR")
repo = "stnava/ANTsR"
binary_table_no_tags(repo)
binary_table_no_tags("muschellij2/ANTsR")
binary_table_no_tags("muschellij2/ANTsR", force = TRUE)

muschellij2/ghtravis documentation built on April 1, 2021, 5:22 p.m.