Class: GitHubReleaseDownloader

GitHubReleaseDownloader(repositoryOwner, repositoryName, wizard)

A dedicated class used for accessing and downloading releases hosted on GitHub

Constructor

new GitHubReleaseDownloader(repositoryOwner, repositoryName, wizard)

Constructor
Parameters:
Name Type Description
repositoryOwner string The owner of the GitHub repository
repositoryName string The name of the GitHub repository
wizard SetupWizard The setup wizard
Source:

Methods

download(tag, assetRegex) → {Array.<string>}

Downloads all assets that belong to the release with the given tag that match a given regex
Parameters:
Name Type Description
tag string The tag name of the release
assetRegex RegExp An optional regex describing the desired asset(s)
Source:
Returns:
An array of paths leading to the downloaded files
Type
Array.<string>

fetchReleases() → {Array.<object>}

Fetches the GitHub releases
Source:
Returns:
The downloaded versions json array
Type
Array.<object>

getLatestRelease() → {string}

Fetches the tag belonging to the latest release for the given GitHub repository
Source:
Returns:
The tag belonging to the latest release
Type
string

getReleases() → {Array.<string>}

Fetches the tags belonging to the releases for the given GitHub repository
Source:
Returns:
An array containing the tags for the GitHub releases
Type
Array.<string>