Skip to content

Commit

Permalink
[Added] Create changelog for release (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
juandiegombr authored Jan 5, 2023
1 parent 49748a5 commit d3d2b0c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ jobs:
- run: npm run publish-package
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
- name: Build Changelog
id: github_release
uses: mikepenz/release-changelog-builder-action@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -28,7 +33,7 @@ jobs:
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: ''
body: ${{steps.github_release.outputs.changelog}}
draft: false
prerelease: false

0 comments on commit d3d2b0c

Please sign in to comment.