Skip to content

Commit 4aeccac

Browse files
committed
fix: release notes
1 parent b279e34 commit 4aeccac

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ jobs:
5151
env:
5252
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5353
run: |
54-
gh release create ${{ steps.release_info.outputs.tag_name }} --target main --latest --notes ${{ steps.build_changelog.outputs.changelog }}
54+
# Read the changelog from stdin as build notes
55+
echo ${{ steps.build_changelog.outputs.changelog }} | gh release create ${{ steps.release_info.outputs.tag_name }} --target main --latest -F -
5556
5657
release:
5758
name: ${{ matrix.target }} (${{ matrix.runner }})

0 commit comments

Comments
 (0)