@Library('flexo-libs') _

currentBuild.displayName = "#${BUILD_ID}: Update Dashboard"

pipeline {
  agent any

  stages {
    stage('build') {
      steps {
        sh 'env'
        grafanaDashboard(file: "dashboard.json", force: true)
      }
    }
  }
}
