Skip to content

Commit

Permalink
Rename master to main
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-aranda committed Feb 14, 2022
1 parent 0f63b04 commit 8fb1ccd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pipeline {
stage("Build Docker image") {
when {
anyOf {
branch "master"
branch "main"
branch "develop"
branch "bugfix/*"
branch "hotfix/*"
Expand Down Expand Up @@ -41,7 +41,7 @@ pipeline {
stage("Push Docker image") {
when {
anyOf {
branch "master"
branch "main"
branch "develop"
branch "bugfix/*"
branch "hotfix/*"
Expand Down Expand Up @@ -105,12 +105,12 @@ pipeline {
build(job: '../LOVE-integration-tools/develop', wait: false)
}
}
stage("Trigger master deployment") {
stage("Trigger main deployment") {
when {
branch "master"
branch "main"
}
steps {
build(job: '../LOVE-integration-tools/master', wait: false)
build(job: '../LOVE-integration-tools/main', wait: false)
}
}

Expand Down

0 comments on commit 8fb1ccd

Please sign in to comment.