diff --git a/.github/workflows/build-all-matrix.yaml b/.github/workflows/build-all-matrix.yaml index 81dce1bc..b3838cbe 100644 --- a/.github/workflows/build-all-matrix.yaml +++ b/.github/workflows/build-all-matrix.yaml @@ -176,13 +176,27 @@ jobs: merge-multiple: true path: out - # Release the artifacts into GitHub Releases. @TODO this GHA Action is not ideal, uses old nodejs, but I can't find a better one. - - name: "GH Release" - uses: "marvinpinto/action-automatic-releases@latest" + - name: Generate Release Notes + run: | + generated_release_notes=$(gh api 'repos/{owner}/{repo}/releases/generate-notes' -F tag_name=${{github.ref}} --jq .body) + cat >>"$GITHUB_ENV" <<-EOF + RELEASE_NOTES<