Skip to content

Instantly share code, notes, and snippets.

@darinpope
Last active August 3, 2022 18:47
Show Gist options
  • Save darinpope/5d59de18364d80df932ac2c922c65c61 to your computer and use it in GitHub Desktop.
Save darinpope/5d59de18364d80df932ac2c922c65c61 to your computer and use it in GitHub Desktop.

Gist for https://youtu.be/64aP98N9iaI

Documentation

Jenkinsfile

pipeline {
  agent any
  parameters {
    text description: 'What is your story?', name: 'MTEXT'
  }
  stages {
    stage('Example') {
      steps {
        sh "echo 'MTEXT': ${params.'MTEXT'}"
      }
    }
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment