22 lines
454 B
Plaintext
22 lines
454 B
Plaintext
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('Deploy') {
|
|
when { branch 'master' }
|
|
steps {
|
|
script {
|
|
docker.withRegistry('https://registry.sarsoo.xyz', 'git-registry-creds') {
|
|
|
|
docker.build("sarsoo/game-of-life:latest").push()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
always {
|
|
cleanWs()
|
|
}
|
|
}
|
|
} |