We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1de3156 commit 5ae8fa0Copy full SHA for 5ae8fa0
.github/workflows/releases.yml
@@ -90,9 +90,9 @@ jobs:
90
- name: Cleanup release notes
91
id: cleaned-notes
92
run: |
93
- RELEASE_NOTES=$(echo $NOTES | sed '/## What/d')
94
- RELEASE_NOTES=$(echo $RELEASE_NOTES | sed '/## New Contributors/,$d')
95
- echo "release-notes=${RELEASE_NOTES}" >> "$GITHUB_OUTPUT"
+ NOTES=$(echo $NOTES | sed '/## What/d')
+ NOTES=$(echo $NOTES | sed '/## New Contributors/,$d')
+ echo "release-notes=${NOTES}" >> "$GITHUB_OUTPUT"
96
env:
97
NOTES: ${{ steps.generated-notes.outputs.release-notes }}
98
0 commit comments