Skip to content

Commit

Permalink
Added Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmattox committed Sep 7, 2020
1 parent ee0cddd commit a32cc97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ pipeline {
stage('Build Docker images') {
steps {
dir(path: './manager/') {
sh '''docker built -t docker.pkg.github.com/mattmattox/drain-node-on-crash/manager:$BRANCH_NAME . && \\
sh '''docker build -t docker.pkg.github.com/mattmattox/drain-node-on-crash/manager:$BRANCH_NAME . && \\
docker push docker.pkg.github.com/mattmattox/drain-node-on-crash/manager:$BRANCH_NAME'''
}

dir(path: './worker/') {
sh '''docker built -t docker.pkg.github.com/mattmattox/drain-node-on-crash/worker:$BRANCH_NAME . && \\
sh '''docker build -t docker.pkg.github.com/mattmattox/drain-node-on-crash/worker:$BRANCH_NAME . && \\
docker push docker.pkg.github.com/mattmattox/drain-node-on-crash/worker:$BRANCH_NAME'''
}

Expand Down

0 comments on commit a32cc97

Please sign in to comment.