oleg.vodyanov91@gmail.com a07ce92f62 update steps
2026-01-25 22:57:12 +04:00

22 lines
388 B
Plaintext

pipeline {
agent { label 'docker' }
stages {
stage('Checkout'){
steps { checkout scm }
}
stage('Deploy Prod'){
steps {
sh '''
ssh -o StrictHostKeyChecking=no kreamond@109.73.204.66 '
set -euo pipefail
echo "hello"
'
'''
}
}
}
post {
always { junit 'reports/**/*.xml'; }
}
}