Skip to content

Commit d5aa2b1

Browse files
authored
Merge pull request #63 from mateof/develop
Develop
2 parents becff8d + 1442839 commit d5aa2b1

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/auto-release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,13 +274,16 @@ jobs:
274274
- name: '🚀 Create GitHub Release'
275275
env:
276276
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
277+
PR_BODY: ${{ github.event.pull_request.body }}
277278
run: |
278279
TAG="${{ steps.version.outputs.version_tag }}"
279-
PR_BODY="${{ github.event.pull_request.body }}"
280+
281+
# Write PR body to file to avoid shell interpretation issues
282+
echo "$PR_BODY" > release_notes.md
280283
281284
gh release create "$TAG" \
282285
--title "Release $TAG" \
283-
--notes "$PR_BODY" \
286+
--notes-file release_notes.md \
284287
--target main
285288
286289
echo "✅ GitHub Release created"

0 commit comments

Comments
 (0)