fix(ci): android-release.yml wouldn't parse #9
Loading…
Reference in a new issue
No description provided.
Delete branch "test"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The release-notes string contained a literal line break, and its continuation
started at column 0 so the blank line wouldn't become part of the text. A
YAML block scalar ends at the first line indented less than the block, so
run: |stopped there and YAML tried to read the rest of the shell as amapping — "could not find expected ':'", and the workflow never ran.
Built with printf now, on one line. Also validated both workflows by parsing
them, which is what should have happened before the first push: a workflow
that can't be parsed fails at the platform rather than in a step, so nothing
in the run output points at the line that broke it.
Co-Authored-By: Claude Opus 5 noreply@anthropic.com