Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: ensure imageNames are not empty strings
In Typescript/Javascript an empty string split on newline is going to produce an array with an empty string. => "".split('\n') [""] This causes the action to produce a warning, unless `pull-images` is set to false. Failed to get dockerfile path for image : Error: The process '/usr/bin/docker' failed with exit code 1 Filtering the list to remove any zero-length strings from the array solves this issue. Signed-off-by: Morten Linderud <[email protected]>
- Loading branch information