Ubuntu – How can I debug access denied for accessing the server by gitlab-ci?
I have an gitlab-ci script that connects to the production server and does a git pull when I merge something to master branch automatically: stages: - deploy deploy_job: stage: deploy before_script: - sudo apt-get update -y && sudo apt-get install…