From 1a99e9c6c733841e214ed329cc7513db2fb76e64 Mon Sep 17 00:00:00 2001 From: czlonkowski <56956555+czlonkowski@users.noreply.github.com> Date: Sat, 2 Aug 2025 21:34:49 +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 GitHub Actions expression in shell script by using env variable - Prevents YAML parsing error on line 452 - Ensures workflow can execute properly 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cb646d0..d5e134d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -441,6 +441,8 @@ jobs: fi - name: Commit documentation updates + env: + VERSION: ${{ needs.detect-version-change.outputs.new-version }} run: | git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com" @@ -449,7 +451,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 }}" + git commit -m "docs: update version badges to v${VERSION}" git push echo "✅ Committed documentation updates" fi