Morgan McMillian
41b67d5d8b
Some checks failed
dreamfall/mcmillian.dev/pipeline/head There was a failure building this commit
13 lines
274 B
Groovy
13 lines
274 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Execute playbook') {
|
|
steps {
|
|
ansiblePlaybook(
|
|
playbook: 'main.yaml',
|
|
credentialsId: 'onedrop-vetinari'
|
|
)
|
|
}
|
|
}
|
|
}
|
|
}
|