Can someone please help me how to use random numbers in jenkins declarative pipelines as a environment variable to use this number in whole pipeline, we need this number to use as a tag to my build artifact. Thank you.
I tried below in my Jenkins declarative pipeline but it throws null message
environment {
rand = "$RANDOM"
}
stages{
stage("number"){
steps{
script{
echo " this is a number $rand"
}}}}
Here is the pipeline script, to generate random number:
This will generate random numbers between 0-50.
Here you can change the value of the
max
to decide the upper limit range.