fix: release note escaping

This commit is contained in:
Eli Bosley
2025-07-08 16:41:05 -04:00
parent 6ee3cae962
commit 5b6bcb6043

View File

@@ -32,7 +32,9 @@ jobs:
with: with:
node-version: '22.17.0' node-version: '22.17.0'
- run: | - 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 - run: npm install html-escaper@2 xml2js
- name: Update Plugin Changelog - name: Update Plugin Changelog
uses: actions/github-script@v7 uses: actions/github-script@v7