# ivuorinen/actions/github-release ## GitHub Release ### Description Creates a GitHub release with a version and changelog. ### Inputs | name | description | required | default | |-------------|------------------------------------------------------|----------|---------| | `version` |

The version for the release.

| `true` | `""` | | `changelog` |

The changelog or description for the release.

| `false` | `""` | ### Outputs | name | description | |---------------|---------------------------------------------------------| | `release_url` |

URL of the created GitHub release

| | `release_id` |

ID of the created GitHub release

| | `upload_url` |

Upload URL for the created GitHub release assets

| ### Runs This action is a `composite` action. ### Usage ```yaml - uses: ivuorinen/actions/github-release@main with: version: # The version for the release. # # Required: true # Default: "" changelog: # The changelog or description for the release. # # Required: false # Default: "" ```