sarsooxyz.hugo/.jenkins/jenkinsfile

22 lines
456 B
Plaintext
Raw Permalink Normal View History

2023-05-01 20:48:22 +01:00
pipeline {
agent any
stages {
stage('Deploy') {
when { branch 'master' }
steps {
script {
2023-05-14 19:09:56 +01:00
docker.withRegistry('https://registry.sarsoo.xyz', 'git-registry-creds') {
2023-05-01 20:48:22 +01:00
docker.build("sarsoo/sarsooxyz.hugo:latest").push()
}
}
}
}
}
post {
always {
cleanWs()
}
}
}