Git push failed with Host key verification failed – Ubuntu
I use following steps in Jenkinsfile to push tags to github sshagent (credentials: ['jenkins']) { sh """ git config --add url."git@github.com:".insteadOf "https://github.com/" git config user.name 'Jenkins' git config user.email '$$$+###@users.noreply.github.com' git tag -a dimToOff_v"${PRETTY_BUILD_VERSION}"_"${BUILD_NUMBER}" ${COMMIT_ID} -m "${JENKINS_TAG_MESSAGE}" git push --tags…