Gist for https://youtu.be/rNCMAFZ6zho
pipeline {
agent any
stages {
stage('stage 1') {
steps {
echo "${env.BUILD_NUMBER}"
}
}
stage('stage 2') {
steps {
sh "echo $BUILD_NUMBER"
}
}
}
}
pipeline {
agent any
environment {
SERVICE_CREDS = credentials('my-secret-text')
}
stages {
stage('stage 1') {
steps {
sh "echo $SERVICE_CREDS"
}
}
}
}
pipeline {
agent any
environment {
SERVICE_CREDS = credentials('my-secret-text')
}
stages {
stage('stage 1') {
steps {
sh 'echo $SERVICE_CREDS'
}
}
}
}