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.
This commit is contained in:
Claude
2026-02-08 01:09:10 +00:00
parent 32b623f59d
commit ede7856bdb
+2 -1
View File
@@ -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: |