From 952a97ef7342387c063d88c851ec018a7a446929 Mon Sep 17 00:00:00 2001 From: czlonkowski <56956555+czlonkowski@users.noreply.github.com> Date: Fri, 24 Oct 2025 13:49:39 +0200 Subject: [PATCH] fix: resolve YAML syntax error in release.yml workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed invalid multi-line string syntax at line 148 that was breaking YAML parsing and blocking CI on main branch. Changed from quoted multi-line string to heredoc (cat < --- .github/workflows/release.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d3099b0..f26ea8d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -142,8 +142,9 @@ jobs: if [ -z "$PREVIOUS_TAG" ]; then echo "ℹ️ No previous tag found, this might be the first release" - # Get all commits up to current commit - NOTES="### 🎉 Initial Release + # Get all commits up to current commit - use heredoc for multiline + NOTES=$(cat <> $GITHUB_OUTPUT