-
I ran into a super puzzling behaviour. I got a matrix build, that at some point verifies if some file exists and is executable, and in case executes it.
I can work this around but I really cannot figure out why is this happening. I could understand if Windows did not understand UNIX permissions and thus rejected all |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I figured it out just after posting it (talking with a text area helps, apparently). I had forgotten a Apparently, under windows whether something is executable or not is determined by the existence of a correct shebang line. So if you need to mark something as executable on GitHub Actions do not forget to |
Beta Was this translation helpful? Give feedback.
I figured it out just after posting it (talking with a text area helps, apparently). I had forgotten a
!
in the shebang line of the script.Apparently, under windows whether something is executable or not is determined by the existence of a correct shebang line.
So if you need to mark something as executable on GitHub Actions do not forget to
#!
your script correctly 😄