mcmillian.dev/Jenkinsfile
Morgan McMillian 41b67d5d8b
Some checks failed
dreamfall/mcmillian.dev/pipeline/head There was a failure building this commit
Test again with hopefully the correct syntax
2022-11-19 17:16:38 -08:00

13 lines
274 B
Groovy

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