From ce95482067d85831f7c1cb8a9b370c18c9f4f5cf Mon Sep 17 00:00:00 2001 From: softprops Date: Sun, 8 Aug 2021 11:55:10 -0400 Subject: [PATCH] bump version + update changelog --- CHANGELOG.md | 4 ++++ README.md | 1 + package.json | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 697652d..a4925e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index b5a9600..f9d8867 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/package.json b/package.json index 7974279..9ecfcba 100644 --- a/package.json +++ b/package.json @@ -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",