Jenkins Pipelines





Last updated
pipeline {
agent any
stages {
stage('Hello') {
steps {
withCredentials([string(credentialsId: 'zirkul_apikey', variable: 'zirkul_apikey')]) {
sh 'curl -H "X-API-KEY: $zirkul_apikey" https://app.zirkul.com/api/webhook/f3f75cca-da48-4720-be53-8c0396ca041e'
}
}
}
}
}