Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 Fix multiline changelog parsing in GitHub release creation
- 🔧 Updated the `Create or Update Base Release` step in auto-release workflow - 🔀 Added `env` section to properly handle multiline changelog - 📦 Used `toJSON` function to safely pass changelog content - 🔍 Changed changelog parsing from direct string to `JSON.parse(process.env.CHANGELOG)` - 🚀 This fix ensures that multiline changelogs are correctly processed - 💬 Prevents potential issues with special characters or line breaks in commit messages - 📊 Improves reliability of changelog display in GitHub releases This update addresses a potential issue where multiline changelogs might not be correctly parsed when creating or updating GitHub releases. By using `toJSON` and `JSON.parse`, we ensure that the full changelog content, including any special characters or line breaks, is accurately preserved and displayed in the release notes. This change complements the previous update to include full commit messages, ensuring that all commit information is properly captured and presented in the release documentation.
- Loading branch information