From 576113febfe000339545c0fd55793aafd2e53abb Mon Sep 17 00:00:00 2001 From: ab77 Date: Mon, 7 Nov 2022 10:33:21 -0800 Subject: [PATCH] Update release notes on finalize Change-type: patch --- .github/actions/finalize/action.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/actions/finalize/action.yml b/.github/actions/finalize/action.yml index 4121c250..642a5c10 100644 --- a/.github/actions/finalize/action.yml +++ b/.github/actions/finalize/action.yml @@ -24,7 +24,7 @@ runs: echo "version=$(jq -r '.version' package.json)" >> $GITHUB_OUTPUT - - name: Finalize release + - name: Finalize GitHub release if: runner.os == 'Linux' shell: bash --noprofile --norc -eo pipefail -x {0} run: | @@ -40,3 +40,10 @@ runs: env: GITHUB_TOKEN: ${{ fromJSON(inputs.secrets).FLOWZONE_TOKEN }} + + - name: Update release notes + if: runner.os == 'Linux' + uses: softprops/action-gh-release@v1 + with: + generate_release_notes: true + token: ${{ fromJSON(inputs.secrets).FLOWZONE_TOKEN }}