From f25bd5729fc482caac4c0e756487c987628cc059 Mon Sep 17 00:00:00 2001 From: Edgar Luque Date: Fri, 1 Mar 2024 08:27:23 +0100 Subject: [PATCH] fix(ci): try to fix release ci changelog --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5cdece709..1451b2f22 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,16 +37,16 @@ jobs: - name: build release run: cargo build --release - name: Generate a changelog - uses: orhun/git-cliff-action@v2 + uses: orhun/git-cliff-action@v3 id: git-cliff with: - args: --latest --strip header + args: -vv --latest --strip header env: - OUTPUT: ${{ github.workspace }}/CHANGES.md + OUTPUT: CHANGES.md - name: Release uses: softprops/action-gh-release@v1 with: - body_path: ${{ github.workspace }}/CHANGES.md + body: ${{ steps.git-cliff.outputs.content }} files: | README.md LICENSE