#! /usr/bin/env groovy
pipeline {
    agent any
    parameters {
        string(name: 'Version', defaultValue: '2.3.0', description: 'What 
is the release version?')
    }
    stages {
        stage('Build') {
            steps {
                sh 'unix command(s) to build'
            }
        }

        stage('Deploy') {
            steps {
                sh 'unix command(s) to deploy'
            }
        }

      }

}

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/641ee79e-431c-4852-b37c-0848f04a860c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to