We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf12cb5 commit 937c18cCopy full SHA for 937c18c
1 file changed
.github/workflows/create-nightly.yml
@@ -75,7 +75,13 @@ jobs:
75
# Create new release
76
gh release create "$TAG_NAME" "$FILE_NAME" \
77
--title "Nightly Build $TAG_NAME" \
78
- --notes "Automated nightly build from commit ${{ steps.get_sha.outputs.short_sha }}.\n\nChanges since last release:\n$COMMIT_LOG" \
+ --notes-from-file <(cat <<EOF
79
+Automated nightly build from commit ${{ steps.get_sha.outputs.short_sha }}.
80
+
81
+Changes since last release:
82
+$COMMIT_LOG
83
+EOF
84
+) \
85
--prerelease
86
87
0 commit comments