mcmillian.dev/Jenkinsfile
Morgan McMillian 0b3c990732
All checks were successful
dreamfall/mcmillian.dev/pipeline/head This commit looks good
move deployment to new server
2023-03-05 10:27:18 -08:00

15 lines
327 B
Groovy

pipeline {
agent { label "ansible" }
stages {
stage('Execute playbook') {
steps {
ansiblePlaybook(
playbook: 'main.yaml',
inventory: 'inventory.yaml',
credentialsId: 'igor'
)
}
}
}
}