You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(ci): indent multi-line commit message inside release.yml run block
YAML parser treated unindented continuation lines as top-level keys,
breaking the workflow file syntax. Rewrite the commit message as a
single printf so everything stays inside the run: | scalar.
msg="$(printf 'chore(release): sync manifests to %s\n\nAuto-generated by .github/workflows/release.yml after publishing\n%s. Pulls SHA256SUMS.txt from the release and rewrites\ncask / scoop / winget / flatpak manifests to match.\n\n[skip ci]' "$GITHUB_REF_NAME" "$GITHUB_REF_NAME")"
391
+
git commit -m "$msg"
397
392
# Rebase in case main advanced while the release job ran.
0 commit comments