github-release
github-release copied to clipboard
Fixed file parameter that has strings with spaces - Parsing Issue
As per this open Issue: https://github.com/meeDamian/github-release/issues/33
I commented the following solution: https://github.com/meeDamian/github-release/issues/33#issuecomment-1823420056
On the entrypoint.sh script, the files are evaluated within a loop:
for entry in $INPUT_FILES; do
This has the unfortunate outcome of splitting strings via spaces, BUT you can change the way it should split by updating the Internal Field Separator. So the solution is:
IFS='
' && for entry in $INPUT_FILES; do