ci(github-actions): Escape changelog output in workflow (#4088)

This commit is contained in:
James Rich 2025-12-28 15:15:05 -06:00 committed by GitHub
parent 0f00332e94
commit 29a7fd376d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -51,10 +51,8 @@ jobs:
- name: Save changelog to file
if: steps.last_prod_tag.outputs.tag != ''
run: |
mkdir -p artifacts
cat << 'EOF' > artifacts/main-push-changelog.md
${{ steps.changelog.outputs.changelog }}
EOF
mkdir -p artifacts
echo "${{ steps.changelog.outputs.changelog }}" > artifacts/main-push-changelog.md
- name: Upload changelog artifact
if: steps.last_prod_tag.outputs.tag != ''