Skip to content

Commit

Permalink
Update Jenkinsfile branch filter
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Berezovskyi <andriib@kth.se>
  • Loading branch information
berezovskyi committed Feb 15, 2022
1 parent fa56005 commit 15125f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ pipeline {
stage('Deploy') {
when {
anyOf {
branch 'master'
branch 'maint-*'
branch 'origin/master'
branch 'origin/maint-*'
}
}
steps {
Expand Down Expand Up @@ -57,9 +57,9 @@ pipeline {

}
}
stage('Publish Javadocs') {
stage('Publish latest Javadocs') {
when {
branch "master"
branch 'origin/master'
}
steps {
sshagent(['git.eclipse.org-bot-ssh']) {
Expand Down

0 comments on commit 15125f4

Please sign in to comment.