Skip to content

Commit

Permalink
Add 'release' stage on Jenkinsfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
rsur committed Jul 28, 2020
1 parent e1252d8 commit 976d872
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,20 @@ pipeline {
branch 'master'
}
steps {
sh 'docker-phpunit -u 7.0 7.4'
sh 'docker-phpunit 7.0 7.4'
}
post {
success {
sh 'jenkins-postproc'
}
}
}
stage('release') {
when {
tag '*'
}
steps {
sh 'docker-phpunit 7.0 7.4'
}
post {
success {
Expand Down

0 comments on commit 976d872

Please sign in to comment.