Skip to content

Commit

Permalink
cicd: Use correct multiline support
Browse files Browse the repository at this point in the history
  • Loading branch information
dakota-marshall committed Aug 24, 2023
1 parent 616fa39 commit 7176ca6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:
- id: generate_message
name: Set Changelog Message
run: |
echo "changelog=$(python get_release_msg.py)" >> $GITHUB_OUTPUT
echo 'changelog << EOF' >> $GITHUB_OUTPUT
echo "$(python get_release_msg.py)" >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
- uses: ncipollo/release-action@v1
with:
body: ${{ steps.generate_message.outputs.changelog }}

0 comments on commit 7176ca6

Please sign in to comment.