chore(ci): release docker image
Cadoles/bouncer/pipeline/pr-develop This commit looks good Details
Cadoles/bouncer/pipeline/head There was a failure building this commit Details

This commit is contained in:
wpetit 2023-07-06 09:33:52 -06:00
parent 553513d647
commit 33a9787081
1 changed files with 4 additions and 0 deletions

4
Jenkinsfile vendored
View File

@ -34,6 +34,7 @@ pipeline {
anyOf { anyOf {
branch 'master' branch 'master'
branch 'develop' branch 'develop'
branch 'ci-docker-release'
} }
} }
steps { steps {
@ -46,6 +47,9 @@ pipeline {
]) ])
]) { ]) {
sh 'make gitea-release' sh 'make gitea-release'
sh '''
make docker-build docker-release
'''
} }
} }
} }