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