Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
Include new changelog generator
  • Loading branch information
marcelfolaron committed Apr 23, 2024
1 parent 2718d95 commit 9e4ca51
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,16 @@ jobs:
id: hash
run: echo "git_hash=$(git rev-parse --short "$GITHUB_SHA")" >> $GITHUB_OUTPUT
- name: build artifacts

run: make package

- name: Create Changelog
uses: saadmk11/changelog-ci@v1.1.2
id: changelog_ci
with:
changelog_filename: CHANGELOG.md
release_version: ${{ steps.version.outputs.version }}
config_file: .github/workflows/changelogConfig.yml
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: release
uses: ncipollo/release-action@v1
id: create_release
Expand All @@ -34,8 +42,9 @@ jobs:
prerelease: false
name: Leantime v${{ steps.version.outputs.version }}
tag: v${{ steps.version.outputs.version }}
generateReleaseNotes: true
generateReleaseNotes: false
makeLatest: true
body: ${{ steps.changelog_ci.outputs.changelog }}
env:
GITHUB_TOKEN: ${{ github.token }}
- name: upload zip
Expand Down

0 comments on commit 9e4ca51

Please sign in to comment.