Skip to content

Commit

Permalink
Update Github action for Changelog generator based on janheinrichmerk…
Browse files Browse the repository at this point in the history
  • Loading branch information
anitnilay20 committed Oct 20, 2020
1 parent 90d09ae commit 4db853b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,16 @@ jobs:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: heinrichreimer/[email protected]
id: change_log
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout code
uses: actions/checkout@v2
- name: Read Changelog
id: change_log
uses: juliangruber/read-file-action@v1
with:
path: ./CHANGELOG.md
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -25,6 +29,6 @@ jobs:
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: ${{ steps.change_log.outputs.changelog }}
body: ${{ steps.change_log.outputs.content }}
draft: true
prerelease: false

0 comments on commit 4db853b

Please sign in to comment.