From 5b6bcb6043a5269bff4dc28714d787a5a3f07e22 Mon Sep 17 00:00:00 2001 From: Eli Bosley Date: Tue, 8 Jul 2025 16:41:05 -0400 Subject: [PATCH] fix: release note escaping --- .github/workflows/release-production.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-production.yml b/.github/workflows/release-production.yml index a9a31dfbb..1e9b952d5 100644 --- a/.github/workflows/release-production.yml +++ b/.github/workflows/release-production.yml @@ -32,7 +32,9 @@ jobs: with: node-version: '22.17.0' - run: | - echo '${{ steps.release-info.outputs.body }}' >> release-notes.txt + cat << 'EOF' > release-notes.txt + ${{ steps.release-info.outputs.body }} + EOF - run: npm install html-escaper@2 xml2js - name: Update Plugin Changelog uses: actions/github-script@v7