Only deploy when in master

This commit is contained in:
viveanban 2020-03-16 08:32:32 -04:00
parent 5c3445c6ef
commit 8583e69437

3
Jenkinsfile vendored
View file

@ -20,6 +20,9 @@ pipeline {
}
stage('Deploy') {
when {
branch 'master'
}
steps {
echo '"Deployed"'
}