Morgan McMillian
8013eef0e1
Some checks failed
dreamfall/mcmillian.dev/pipeline/head There was a failure building this commit
16 lines
380 B
Groovy
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'
|
|
)
|
|
}
|
|
}
|
|
}
|
|
}
|