Skip to content

Commit

Permalink
chore: add changelog to release body
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdkwast committed Nov 18, 2022
1 parent 33e5d31 commit 9e18946
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ jobs:
ls
echo "::set-output name=tag_name::$(git tag --sort version:refname | tail -n 1)"
- name: Changelog
uses: Bullrich/generate-release-changelog@master
id: Changelog
env:
REPO: ${{ github.repository }}

- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -39,6 +45,8 @@ jobs:
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: |
${{ steps.Changelog.outputs.changelog }}
draft: false
prerelease: false

Expand Down
4 changes: 3 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{
"0.2.2": "1.0.0"
"0.2.2": "1.0.0",
"0.2.3": "1.0.0",
"0.2.4": "1.0.0"
}

0 comments on commit 9e18946

Please sign in to comment.