From ede7856bdb1a0a5a91e8ef2517733dd74fa32ca2 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 8 Feb 2026 01:09:10 +0000 Subject: [PATCH] Fix YAML syntax error in create-release workflow The sed pattern with `*` on a single-line `run:` was interpreted as a YAML alias. Switch to a block scalar (`run: |`) to avoid this. --- .github/workflows/create-release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index ccdbc4b..7b4f23a 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -42,7 +42,8 @@ jobs: run: go test -race ./... - name: Update manifest.json version - run: sed -i 's/"version": *"[^"]*"/"version": "${{ inputs.version }}"/' manifest.json + run: | + sed -i 's/"version": *"[^"]*"/"version": "${{ inputs.version }}"/' manifest.json - name: Commit, tag, and push run: |