oleg.vodyanov91@gmail.com 679453783a update steps
2026-01-25 23:12:53 +04:00

21 lines
436 B
Plaintext

pipeline {
agent { label 'docker' }
stages {
stage('Checkout'){
steps { checkout scm }
}
stage('Deploy Prod'){
steps {
sshagent (credentials: ['myinstalink-server']) {
sh '''
ssh -o StrictHostKeyChecking=no kreamond@109.73.204.66 '
set -euo pipefail
cd ~/docbot || exit 1
git pull origin main
'
'''
}
}
}
}
}