We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feb6837 commit ff3751aCopy full SHA for ff3751a
.github/workflows/build-and-release.yml
@@ -77,11 +77,13 @@ jobs:
77
RELEASE_NOTES=$(git log --pretty=format:"* %s" $TAG_NAME)
78
fi
79
80
- echo "notes<<EOF" >> $GITHUB_OUTPUT
81
- echo "## Changes in $TAG_NAME" >> $GITHUB_OUTPUT
82
- echo "" >> $GITHUB_OUTPUT
83
- echo "$RELEASE_NOTES" >> $GITHUB_OUTPUT
84
- echo "EOF"
+ {
+ echo "notes<<EOF"
+ echo "## Changes in $TAG_NAME"
+ echo ""
+ echo "$RELEASE_NOTES"
85
+ echo "EOF"
86
+ } >> $GITHUB_OUTPUT
87
88
- name: Create Release
89
uses: softprops/action-gh-release@v1
0 commit comments