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.
CHANGELOG
1 parent 9021bc7 commit fab3661Copy full SHA for fab3661
.github/workflows/release.yml
@@ -23,11 +23,16 @@ jobs:
23
- name: get-version
24
id: package-version
25
uses: martinbeentjes/[email protected]
26
+ - name: Parse changelog
27
+ id: parse-changelog
28
+ uses: schwma/[email protected]
29
+ with:
30
+ version: '${{ steps.package-version.outputs.current-version }}'
31
- name: Create a GitHub release
32
uses: ncipollo/release-action@v1
33
with:
- tag: "v${{ steps.package-version.outputs.current-version }}"
- # body: changelog...
34
+ tag: 'v${{ steps.package-version.outputs.current-version }}'
35
+ body: '${{ steps.parse-changelog.outputs.body }}'
36
- run: npm publish --access public
37
env:
38
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
0 commit comments