mcmillian.us/Jenkinsfile
Morgan McMillian 73b8d8b47e
All checks were successful
dreamfall/mcmillian.us/pipeline/head This commit looks good
move deployment to new server
2023-03-05 10:29:52 -08:00

15 lines
322 B
Groovy

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