We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85f2e89 commit 3fd305cCopy full SHA for 3fd305c
1 file changed
.github/workflows/release.yaml
@@ -106,6 +106,9 @@ jobs:
106
if: ${{ matrix.vscode_arch == 'x64' }}
107
- run: tar -czf package.tar.gz release
108
109
+ - run: |
110
+ sed "/^## Unreleased/,/^## / ! d" CHANGELOG.md | head -n -2 | tail -n +3 > .cache/release-notes
111
+ if: ${{ matrix.vscode_arch == 'x64' }}
112
- uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v1
113
114
with:
@@ -114,6 +117,7 @@ jobs:
117
files: package.tar.gz
115
118
tag_name: v${{ env.VERSION }}
116
119
name: v${{ env.VERSION }}
120
+ body: .cache/release-notes
121
122
# Platform-specific release.
123
- run: KEEP_MODULES=1 npm run release
0 commit comments