Skip to content

Commit 4196345

Browse files
Fix changelog environment variable assignment
1 parent 95cdb03 commit 4196345

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ jobs:
5252
id: generate_changelog
5353
run: |
5454
git-cliff --config .git-cliff.toml --tag v${{ env.VERSION }} > CHANGELOG.md
55-
echo "CHANGELOG=$(cat CHANGELOG.md)" >> $GITHUB_ENV
55+
echo "CHANGELOG<<EOF" >> $GITHUB_ENV
56+
cat CHANGELOG.md >> $GITHUB_ENV
57+
echo "EOF" >> $GITHUB_ENV
5658
5759
- name: Create Release
5860
id: create_release

0 commit comments

Comments
 (0)