From 38f3aafdd8a34ae5452ae9bb879881b807e5a7b4 Mon Sep 17 00:00:00 2001 From: welpo Date: Thu, 21 Mar 2024 22:18:49 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20misc(CI):=20use=20CHANGES.md=20f?= =?UTF-8?q?or=20GitHub=20release=20notes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Should fix shell parsing issues with special characters in release notes. --- .github/workflows/cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index e6778c7cb..89967a448 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -31,6 +31,6 @@ jobs: run: | gh release create ${{ github.ref_name }} \ --title "Release ${{ github.ref_name }}" \ - --notes "${{ steps.git-cliff.outputs.content }}" + --notes-file CHANGES.md env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}