From f864ee6a3bf1f3f5b407b998817a149d52bc243f Mon Sep 17 00:00:00 2001 From: dark0dave Date: Tue, 27 Aug 2024 12:55:42 +0100 Subject: [PATCH] fix(gitcliff): Add fix for git cliff Signed-off-by: dark0dave --- .github/workflows/main.yaml | 4 +++- .gitignore | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index a66f2413..b0577afb 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -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 @@ -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: ./changelog.md draft: ${{ startsWith(steps.get_tag.outputs.git_tag, 'nightly') != true }} prerelease: ${{ startsWith(steps.get_tag.outputs.git_tag, 'nightly') }} push-image: diff --git a/.gitignore b/.gitignore index a935d3ad..7758f78d 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,6 @@ fmtcoverage.html .swp .idea .DS_Store + +# changelog +changelog.md