We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b279e34 commit 4aeccacCopy full SHA for 4aeccac
.github/workflows/release.yml
@@ -51,7 +51,8 @@ jobs:
51
env:
52
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53
run: |
54
- gh release create ${{ steps.release_info.outputs.tag_name }} --target main --latest --notes ${{ steps.build_changelog.outputs.changelog }}
+ # 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 -
56
57
release:
58
name: ${{ matrix.target }} (${{ matrix.runner }})
0 commit comments