Skip to content

Commit

Permalink
Merge pull request #628 from doitintl/fix/gitcliff
Browse files Browse the repository at this point in the history
fix(gitcliff): Add fix for git cliff
  • Loading branch information
dark0dave authored Aug 28, 2024
2 parents 4676658 + 9d487c9 commit 57480c0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,8 @@ jobs:
with:
config: cliff.toml
args: --verbose --latest
env:
OUTPUT: changelog.md
- uses: actions/download-artifact@v1
with:
name: release-artifacts-linux-amd64
Expand All @@ -170,7 +172,7 @@ jobs:
with:
tag_name: ${{ steps.get_tag.outputs.git_tag }}
release_name: ${{ steps.get_tag.outputs.git_tag }}
body_path: ./release-artifacts/changelog.md
body_path: ${{ steps.git-cliff.outputs.changelog }}
draft: ${{ startsWith(steps.get_tag.outputs.git_tag, 'nightly') != true }}
prerelease: ${{ startsWith(steps.get_tag.outputs.git_tag, 'nightly') }}
push-image:
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ fmtcoverage.html
.swp
.idea
.DS_Store

# changelog
changelog.md

0 comments on commit 57480c0

Please sign in to comment.