Troubleshooting#
This page contains some advice about errors and problems commonly encountered during the development.
Docker:#
To fix unknown docker related issues, you can either:
Others#
Permission denied while executing bash script in GitHub Actions.
That most likely means that your <path_to_script>/<script_name>.sh script doesn’t have the execute filesystem permission set.
Instruct git to add the permission anyway with this command:
$ git update-index --chmod=+x <path_to_script>/<script_name>.sh
$ git commit -m "Changing file permissions"
update-index is similar to add in that it adds the change to the index, so you have to commit and push as usual.