Skip to content

Commit

Permalink
ci: Fix nightly image build
Browse files Browse the repository at this point in the history
Signed-off-by: Maciej Kwiek <maciej@isovalent.com>
  • Loading branch information
nebril committed Mar 3, 2020
1 parent 19c3f5a commit 4c0c8ee
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Jenkinsfile.nightly
Expand Up @@ -76,7 +76,9 @@ pipeline {
}
steps {
withDockerRegistry([ credentialsId: "NIGHTLY_DOCKER_HUB_CRED", url: "" ]) {
sh 'make docker-image'
dir('${GOPATH}/${PROJ_PATH}') {
sh 'make docker-image'
}
sh 'docker tag cilium/cilium:latest cilium/nightly:latest'
sh 'docker tag cilium/nightly:latest cilium/nightly:${NIGHTLY_TAG}'
sh 'docker push cilium/nightly:${NIGHTLY_TAG}'
Expand Down

0 comments on commit 4c0c8ee

Please sign in to comment.