bump version + update changelog

This commit is contained in:
softprops 2021-08-08 11:55:10 -04:00
parent 2861dc8673
commit ce95482067
3 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
## 0.1.9
- add support for linking release to GitHub discussion [#136](https://github.com/softprops/action-gh-release/pull/136)
## 0.1.8
- address recent warnings in assert upload api as well as introduce asset upload overrides, allowing for multiple runs for the same release with the same named asserts [#134](https://github.com/softprops/action-gh-release/pull/134)

View File

@ -177,6 +177,7 @@ The following are optional as `step.with` keys
| `fail_on_unmatched_files` | Boolean | Indicator of whether to fail if any of the `files` globs match nothing |
| `target_commitish` | String | Commitish value that determines where the Git tag is created from. Can be any branch or commit SHA. |
| `token` | String | Secret GitHub Personal Access Token. Defaults to `${{ github.token }}` |
| `discussion_category_name` | String | |
💡 When providing a `body` and `body_path` at the same time, `body_path` will be
attempted first, then falling back on `body` if the path can not be read from.

View File

@ -1,6 +1,6 @@
{
"name": "action-gh-release",
"version": "0.1.8",
"version": "0.1.9",
"private": true,
"description": "GitHub Action for creating GitHub Releases",
"main": "lib/main.js",