Update Jenkinsfile

This commit is contained in:
Jessica Allaire 2020-03-30 15:55:12 -04:00 committed by GitHub
parent c89ab87420
commit 2ca0cd7914
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

5
Jenkinsfile vendored
View file

@ -17,6 +17,11 @@ pipeline {
}
}
stage('Deploy') {
when {
expression {
GIT_BRANCH == 'master'
}
}
steps {
echo 'Deploy'
}