Skip to content

Permission Denied "exec entrypoint.sh" #26891

Answered by ethomson
ShaunLWM asked this question in Actions
Discussion options

You must be logged in to vote

The runner is trying to run your entrypoint.sh as a script, but it looks like your entrypoint.sh is missing the execute bit.  You’ll need to add it to that file in your action’s repository.

On Linux or macOS, run:

chmod +x entrypoint.sh
git add entrypoint.sh
git commit

On Windows, run:

git add --chmod=+x -- entrypoint.sh
git commit

And then push the changes back up.

Replies: 5 comments

Comment options

You must be logged in to vote
0 replies
Answer selected
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
5 participants