create_github_release
Create a new release on GitHub.
def create_github_release(
new_version: string,
notes: string
) - > null
Create a new release on GitHub.
Parameters
| Name | Type | Description |
|---|---|---|
| new_version | string | The semantic version string used to generate the release tag and title (e.g., "1.2.3"). |
| notes | string | The markdown-formatted text describing the changes and updates included in this release. |
Returns
| Type | Description |
|---|---|
null | Nothing is returned on success; the function raises an exception if the HTTP request fails. |