Skip to content

Commit

Permalink
Merge pull request #56 from vprashar2929/add-changelog
Browse files Browse the repository at this point in the history
feat: add support for generating changelog
  • Loading branch information
SamYuan1990 authored Jan 3, 2024
2 parents d23bd46 + 86c5faf commit 4e8a961
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ jobs:
run: |
git push --follow-tags
- name: Generate changelog
id: changelog
uses: metcalfc/[email protected]
with:
myToken: ${{ secrets.GITHUB_TOKEN }}

- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -53,5 +59,6 @@ jobs:
with:
tag_name: "v${{ github.event.inputs.tag }}"
release_name: "v${{github.event.inputs.tag}}"
body: ${{ steps.changelog.outputs.changelog }}
draft: false
prerelease: false

0 comments on commit 4e8a961

Please sign in to comment.