Test again with hopefully the correct syntax
Some checks failed
dreamfall/mcmillian.dev/pipeline/head There was a failure building this commit

This commit is contained in:
Morgan McMillian 2022-11-19 17:16:38 -08:00
parent 59cc305c07
commit 41b67d5d8b

15
Jenkinsfile vendored
View file

@ -1,10 +1,13 @@
pipeline { pipeline {
agent { agent any
node { stages {
ansiblePlaybook( stage('Execute playbook') {
playbook: 'main.yaml', steps {
credentialsId: 'onedrop-vetinari' ansiblePlaybook(
) playbook: 'main.yaml',
credentialsId: 'onedrop-vetinari'
)
}
} }
} }
} }