mcmillian.dev/Jenkinsfile
Morgan McMillian 8013eef0e1
Some checks failed
dreamfall/mcmillian.dev/pipeline/head There was a failure building this commit
correct typo in jenkinsfile
2022-11-19 15:09:52 -08:00

16 lines
380 B
Groovy

pipeline {
agent none
environment {
SNAPCRAFT_STORE_CREDENTIALS = credentials('snapcraft-store-credentials')
}
stages {
stage('Execute playbook') {
steps {
ansiblePlaybook(
playbook: 'main.yaml',
credentialsId: 'onedrop-vetinari'
)
}
}
}
}