From 7dc938065f3223091c823befbf7fb563c427424c Mon Sep 17 00:00:00 2001 From: czlonkowski <56956555+czlonkowski@users.noreply.github.com> Date: Sat, 2 Aug 2025 21:32:27 +0200 Subject: [PATCH] fix: resolve YAML syntax error in release workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix multiline commit message syntax that was breaking YAML parsing - Add missing GITHUB_TOKEN environment variable for gh CLI commands - Simplify commit message to avoid YAML parsing issues The workflow was failing due to unescaped multiline string in git commit command. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/release.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9a2e365..cb646d0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -146,6 +146,8 @@ jobs: - name: Create GitHub Release id: create + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | VERSION="${{ needs.detect-version-change.outputs.new-version }}" IS_PRERELEASE="${{ needs.detect-version-change.outputs.is-prerelease }}" @@ -447,11 +449,7 @@ jobs: echo "No documentation changes to commit" else git add README.md - git commit -m "docs: update version badges to v${{ needs.detect-version-change.outputs.new-version }} - -🤖 Generated with [Claude Code](https://claude.ai/code) - -Co-Authored-By: Claude " + git commit -m "docs: update version badges to v${{ needs.detect-version-change.outputs.new-version }}" git push echo "✅ Committed documentation updates" fi