mcmillian.dev/Jenkinsfile
Morgan McMillian 13c26038e1
All checks were successful
dreamfall/mcmillian.dev/pipeline/head This commit looks good
fix inventory file
2023-03-05 10:31:40 -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'
)
}
}
}
}