mcmillian.dev/Jenkinsfile

17 lines
379 B
Plaintext
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(
playbook: 'main.yaml'
credentialsId: 'onedrop-vetinari'
)
}
}
}
}