mcmillian.us/Jenkinsfile
Morgan McMillian a982e2c5f2
All checks were successful
dreamfall/mcmillian.us/pipeline/head This commit looks good
initial commit for site setup
2022-12-14 15:31:02 -08:00

15 lines
339 B
Groovy

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