This is an automated email from the ASF dual-hosted git repository.
dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git
The following commit(s) were added to refs/heads/master by this push:
new eaec003 change Jenkins build to publish docker images with tag
'nightly' (#4533)
eaec003 is described below
commit eaec0035e9a1f5be5cd8c854ba7b20d46c6d6f4f
Author: David Grove <[email protected]>
AuthorDate: Mon Jul 1 14:10:00 2019 -0400
change Jenkins build to publish docker images with tag 'nightly' (#4533)
---
tools/jenkins/apache/dockerhub.groovy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/jenkins/apache/dockerhub.groovy
b/tools/jenkins/apache/dockerhub.groovy
index 14cb8c0..4b075f3 100644
--- a/tools/jenkins/apache/dockerhub.groovy
+++ b/tools/jenkins/apache/dockerhub.groovy
@@ -33,7 +33,7 @@ node('xenial&&!H21&&!H22&&!H11&&!ubuntu-eu3') {
def gitCommit = sh(returnStdout: true, script: 'git rev-parse
HEAD').trim()
def shortCommit = gitCommit.take(7)
sh "./gradlew clean"
- sh "${PUSH_CMD} -PdockerImageTag=latest"
+ sh "${PUSH_CMD} -PdockerImageTag=nightly"
sh "${PUSH_CMD} -PdockerImageTag=${shortCommit}"
}
}