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 00d9ac7 commit fe060dbCopy full SHA for fe060db
1 file changed
.github/workflows/publish.yml
@@ -1,4 +1,4 @@
1
-name: Publish (NPM)
+name: Publish
2
3
on:
4
push:
@@ -42,7 +42,16 @@ jobs:
42
env:
43
CI: true
44
45
+ - name: Generate Release Body
46
+ run: npx extract-changelog-release > RELEASE_BODY.md
47
+
48
- name: Publish to NPM
49
run: npm publish
50
51
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
52
53
+ - name: Create GitHub Release
54
+ uses: ncipollo/release-action@v1
55
+ with:
56
+ bodyFile: "RELEASE_BODY.md"
57
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments