Skip to content
This repository has been archived by the owner on Jan 25, 2023. It is now read-only.

Commit

Permalink
Fix docker push
Browse files Browse the repository at this point in the history
  • Loading branch information
brycekahle committed Jan 10, 2018
1 parent f28a47e commit 20e98b9
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,11 @@ pipeline {
when {
branch 'master'
}
failFast true
parallel {
stage("Push Squash") {
steps {
sh "docker push netlify/build:squash"
}
}
stage("Push Latest") {
steps {
sh "docker push netlify/build:squash"
}
}
steps {
script {
docker.image('netlify/build:latest').push()
docker.image('netlify/build:squash'.push()
}
}
}
}
Expand Down

0 comments on commit 20e98b9

Please sign in to comment.