Compare commits

...

1 Commits

Author SHA1 Message Date
5a3eeca071 ci: limit release to master branch
Some checks reported errors
arcad/emissary-firmware/pipeline/head Something is wrong with the build of this commit
2023-08-25 07:55:09 -06:00

6
Jenkinsfile vendored
View File

@ -23,6 +23,7 @@ pipeline {
stage('Update emissary release') { stage('Update emissary release') {
when { when {
branch 'master'
expression { expression {
return params.emissaryRelease != 'latest' return params.emissaryRelease != 'latest'
} }
@ -60,7 +61,7 @@ pipeline {
} }
} }
stage('Build and release') { stage('Build') {
steps { steps {
script { script {
withCredentials([ withCredentials([
@ -80,6 +81,9 @@ pipeline {
} }
stage('Release') { stage('Release') {
when {
branch 'master'
}
steps { steps {
withCredentials([ withCredentials([
usernamePassword([ usernamePassword([