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/openwhisk-runtime-rust.git
The following commit(s) were added to refs/heads/master by this push:
new b43cf42 update publish.sh for core subdir (missed in PR#20) (#21)
b43cf42 is described below
commit b43cf424757c974ecc8673aac800197eef7648f5
Author: David Grove <[email protected]>
AuthorDate: Sat Feb 8 13:50:51 2020 -0500
update publish.sh for core subdir (missed in PR#20) (#21)
---
tools/travis/publish.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/travis/publish.sh b/tools/travis/publish.sh
index d38aed9..11fe401 100755
--- a/tools/travis/publish.sh
+++ b/tools/travis/publish.sh
@@ -30,7 +30,7 @@ fi
if [[ ! -z ${RUNTIME} ]]; then
TERM=dumb ./gradlew \
-:${RUNTIME}:distDocker \
+core:${RUNTIME}:distDocker \
-PdockerRegistry=docker.io \
-PdockerImagePrefix=${IMAGE_PREFIX} \
-PdockerImageTag=${IMAGE_TAG}
@@ -39,7 +39,7 @@ TERM=dumb ./gradlew \
if [ ${IMAGE_TAG} == "nightly" ]; then
SHORT_COMMIT=`git rev-parse --short HEAD`
TERM=dumb ./gradlew \
- :${RUNTIME}:distDocker \
+ core:${RUNTIME}:distDocker \
-PdockerRegistry=docker.io \
-PdockerImagePrefix=${IMAGE_PREFIX} \
-PdockerImageTag=${SHORT_COMMIT}