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 |
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) |
Returns:
An array of paths leading to the downloaded files
- Type
- Array.<string>
fetchReleases() → {Array.<object>}
Fetches the GitHub releases
Returns:
The downloaded versions json array
- Type
- Array.<object>
getLatestRelease() → {string}
Fetches the tag belonging to the latest release for the given GitHub repository
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
Returns:
An array containing the tags for the GitHub releases
- Type
- Array.<string>