Skip to content

Action showing permission denied #26239

Discussion options

You must be logged in to vote

That most likely means that your ./.github/scripts/backend_decrypt.sh script doesn’t have the “execute” filesystem permission set. I assume you’re developing on Windows locally, which doesn’t have that kind of permission system.

You can tell git to add the permission anyway with this command:

git update-index --chmod=+x ./.github/scripts/backend_decrypt.sh

update-index is similar to add in that it adds the change to the index, so you’ll have to commit and push as usual.

Replies: 7 comments 7 replies

Comment options

You must be logged in to vote
3 replies
@issqTK
Comment options

@airtower-luna
Comment options

@caldempsey
Comment options

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
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
4 replies
@airtower-luna
Comment options

@ngohuytrieu
Comment options

@airtower-luna
Comment options

@renshengyiyijihe
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment