Last active
September 27, 2017 21:55
-
-
Save prachikhadke/88c43ab3688830585570770dc800d542 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node { | |
properties([ | |
parameters([ | |
string(name: 'DEPLOY_ENV', defaultValue: 'TESTING', description: 'The target environment', ) | |
]) | |
]) | |
stage("Initialize") { | |
echo "echo ${params.DEPLOY_ENV}" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment