mcmillian.dev/Jenkinsfile

17 lines
380 B
Text
Raw Normal View History

2022-11-19 23:06:15 +00:00
pipeline {
agent none
environment {
SNAPCRAFT_STORE_CREDENTIALS = credentials('snapcraft-store-credentials')
}
stages {
stage('Execute playbook') {
steps {
ansiblePlaybook(
2022-11-19 23:09:52 +00:00
playbook: 'main.yaml',
2022-11-19 23:06:15 +00:00
credentialsId: 'onedrop-vetinari'
)
}
}
}
}