diff --git a/.github/workflows/update-stable.yml b/.github/workflows/update-stable.yml index a867a4c4..f990968a 100644 --- a/.github/workflows/update-stable.yml +++ b/.github/workflows/update-stable.yml @@ -119,7 +119,9 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | VERSION="v${{ steps.bump_version.outputs.new_version }}" + # Save changelog to a file + echo "${{ steps.changelog.outputs.content }}" > release_notes.md gh release create "$VERSION" \ --title "Release $VERSION" \ - --notes "${{ steps.changelog.outputs.content }}" \ + --notes-file release_notes.md \ --target stable