fix(ci): escape parens in Nushell interpolated string #13
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/nu-string-paren"
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
Publish binary as Generic Packagestep inbuild-oci-image.ymlfailed with:Nushell evaluates
(...)inside$"..."strings as a subexpression. The literal(ignoring 404)in the log message was being parsed as a call to a command namedignoring, blowing up the workflow before curl ran. Switching to a dashed clause keeps the message readable and stops the parser from treating it as code.Test plan
build-oci-imageworkflow on this branch and confirm thePublish binary as Generic Packagestep proceeds past the print line.