ReleaseAssets
Lists assets attached to repository releases, including binary files, source code archives, and other downloadable content for distribution.
View-Specific Information
Select
The component uses the GitHub API to process WHERE clause conditions that are built with the following columns and operators:
- ReleaseTagName supports the '=,IN' comparison operators.
- Name supports the '=' comparison operator.
For example, the following queries are processed server-side:
SELECT * FROM [ReleaseAssets]
SELECT * FROM [ReleaseAssets] WHERE [ReleaseTagName] = 'Val1'
SELECT * FROM [ReleaseAssets] WHERE [Name] = 'Val1'
The component processes other filters client-side within the component.
Columns
| Name | Type | References | OrderBySupport | Description |
| Id [KEY] | String | A unique identifier assigned to the release asset for tracking and reference. | ||
| ReleaseTagName | String |
Releases.TagName | The tag associated with the release to which this asset belongs, used for versioning and reference. | |
| Name | String | The name or title of the release asset, typically describing the file's content or purpose. | ||
| ContentType | String | The MIME type that indicates the format of the release asset (for example, 'application/zip', 'image/png'). | ||
| Size | Int | The total file size of the release asset, measured in bytes. | ||
| UploadedBy | String | The GitHub username of the user who uploaded this asset to the release. | ||
| Url | String | The API URL that provides access to metadata and information about the release asset. | ||
| DownloadCount | Int | The total number of times this release asset has been downloaded by users. | ||
| DownloadUrl | String | The direct URL to download the release asset through a web browser or other tools. | ||
| UpdatedAt | Datetime | The date and time when the release asset was last modified or updated. | ||
| CreatedAt | Datetime | The date and time when the release asset was originally uploaded to the release. |