Skip to content

Commit

Permalink
ci: release body is empty
Browse files Browse the repository at this point in the history
  • Loading branch information
ReaJason committed Feb 2, 2025
1 parent ba7f86b commit d568950
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ jobs:
id: get_changelog
working-directory: scripts
run:
changelog=$(python parse_changelog_of_version.py "${{ steps.get_version.outputs.version }}")
echo "changelog=${changelog}" >> $GITHUB_OUTPUT
CHANGELOG=$(python parse_changelog_of_version.py "${{ steps.get_version.outputs.version }}")
echo $CHANGELOG
echo "changelog=${CHANGELOG}" >> $GITHUB_OUTPUT

build-jar:
name: Build Jar
Expand Down Expand Up @@ -129,7 +130,7 @@ jobs:
with:
name: ${{ needs.info.outputs.version }}
tag: ${{ needs.info.outputs.version }}
body: ${{ needs.info.outputs.changelog }}
body: "${{ needs.info.outputs.changelog }}"

deploy-northflank:
name: Deploy to Northflank
Expand Down

0 comments on commit d568950

Please sign in to comment.