Skip to content

Commit

Permalink
feat: add support for generating changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Vibhu Prashar <[email protected]>
  • Loading branch information
vprashar2929 committed Jan 1, 2024
1 parent d23bd46 commit 86c5faf
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 86c5faf

Please sign in to comment.