Skip to content

Commit

Permalink
Update Jenkinsfile-Release
Browse files Browse the repository at this point in the history
  • Loading branch information
hlebkanonik authored Oct 17, 2022
1 parent 0c9b236 commit 89fc4d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Jenkinsfile-Release
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@ pipeline {
stage('Build') {
steps {
script {
sh 'docker build -t $REGISTRY/reportportal:$VERSION . --no-cache'
sh 'docker build -t $REGISTRY/service-ui:$VERSION . --no-cache'
}
}
}

stage('Push') {
steps {
script {
sh 'docker push $REGISTRY/reportportal:$VERSION'
sh 'docker push $REGISTRY/service-ui$VERSION'
}
}
}

stage('Cleanup') {
steps {
script {
sh 'docker rmi $REGISTRY/reportportal:$VERSION'
sh 'docker rmi $REGISTRY/service-ui:$VERSION'
}
}
}
Expand Down

0 comments on commit 89fc4d5

Please sign in to comment.