Skip to content

Commit

Permalink
Replaced echo wiith printf
Browse files Browse the repository at this point in the history
  • Loading branch information
CEKlopfenstein committed May 18, 2024
1 parent 85cf7f0 commit 8ac9d61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
MAJOR=$(($LAST_MAJOR+1))
MINOR=$(git log --oneline HEAD...$LAST_VERSION_TAG|wc -l)
echo "TAG_NAME=$YEAR.$MAJOR.$MINOR-pre" >> $GITHUB_OUTPUT
echo "CHANGE=\"$(sed -E '/---/q;/^## .*$/d' CHANGELOG.md|sed '/^---$/d')\"" >> $GITHUB_OUTPUT
printf "CHANGE=\"$(sed -E '/---/q;/^## .*$/d' CHANGELOG.md|sed '/^---$/d')\"\n" >> $GITHUB_OUTPUT
- name: Release
uses: softprops/action-gh-release@v2
with:
Expand Down

0 comments on commit 8ac9d61

Please sign in to comment.