Skip to content

Commit

Permalink
Fix release body creation
Browse files Browse the repository at this point in the history
  • Loading branch information
fkleedorfer committed Dec 6, 2024
1 parent 2e629ec commit a3e33ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
run: |
cat src/build/snapshot-release/release-body-header.md > target/release-body.md
echo "# Changes" >> target/release-body.md
echo "${{ steps.get-changelog.outputs.changelog }}" >> target/release-body.md
echo "${{ steps.get-changelog.outputs.changelog }}" | tee -a target/release-body.md > /dev/null
cat src/build/snapshot-release/release-body-footer.md >> target/release-body.md
# Make github release
Expand Down

0 comments on commit a3e33ce

Please sign in to comment.