-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spaces in filenames #7
Comments
index.js#L14 is problematic one. The solution i see would be to change it to to comma separation, but that would be a breaking change. The other one would be to write algorithm that separates multiple files based on said quotes. |
You could do like softprops/action-gh-release@v1 and use newlines if first line is a pipe. I did this thinking it would work, but it tries to create a file path with a newline character in it. Like: with:
files: |
file.txt
image.png |
Oh yeah, then probably you can just use
What about using |
I have filenames with literal spaces in them, but there is no way (so far as I can tell from documentation or reading the source) to get the action to handle the space without breaking into a new file. Quoting with both single and double quotes fails as well as escaping with backslashes.
The text was updated successfully, but these errors were encountered: