Skip to content

Commit 5206613

Browse files
committed
.github/workflows: avoid substitution wonkiness from step output.
1 parent 9dccea7 commit 5206613

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ jobs:
6060
- name: Update changelog.txt
6161
run: |
6262
echo "# [v${{ steps.version-label.outputs.version }}] - `date +%Y-%m-%d`" >> changelog.txt.tmp
63-
echo "${{steps.generate-release-notes.outputs.changelog}}" >> changelog.txt.tmp
63+
echo '' > changelog.txt
64+
echo '${{steps.generate-release-notes.outputs.changelog}}' >> changelog.txt.tmp
6465
echo '' >> changelog.txt
6566
cat changelog.txt >> changelog.txt.tmp
6667
mv changelog.txt.tmp changelog.txt

0 commit comments

Comments
 (0)