23 lines
452 B
Plaintext
23 lines
452 B
Plaintext
pipeline {
|
|
agent { label 'docker' }
|
|
stages {
|
|
stage('Checkout'){
|
|
steps { checkout scm }
|
|
}
|
|
stage('Deploy Prod'){
|
|
steps {
|
|
sshagent (credentials: ['jenkins-gitea-myinstalink']) {
|
|
sh '''
|
|
ssh -o StrictHostKeyChecking=no kreamond@109.73.204.66 '
|
|
set -euo pipefail
|
|
echo "hello"
|
|
'
|
|
'''
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
always { junit 'reports/**/*.xml'; }
|
|
}
|
|
}
|