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 60a39b5 commit cac9edfCopy full SHA for cac9edf
.github/workflows/npm-publish.yml
@@ -12,6 +12,13 @@ jobs:
12
steps:
13
- name: Checkout code
14
uses: actions/checkout@v2
15
+ with:
16
+ fetch-depth: 0
17
+ - name: Changelog
18
+ uses: scottbrenner/generate-changelog-action@master
19
+ id: Changelog
20
+ env:
21
+ REPO: ${{ github.repository }}
22
- name: Create Release
23
id: create_release
24
uses: actions/create-release@v1
@@ -20,12 +27,10 @@ jobs:
27
with:
28
tag_name: ${{ github.ref }}
29
release_name: Release ${{ github.ref }}
- body: |
- Changes in this Release
25
- - First Change
26
- - Second Change
30
draft: false
31
prerelease: false
32
+ body: |
33
+ ${{ steps.Changelog.outputs.changelog }}
34
35
publish-npm:
36
needs: build
0 commit comments