You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by dg...@apache.org on 2021/08/04 14:35:41 UTC

[openwhisk-runtime-python] branch master updated: fix publish script (#114)

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-python.git


The following commit(s) were added to refs/heads/master by this push:
     new c5f4cfe  fix publish script (#114)
c5f4cfe is described below

commit c5f4cfed6c8ce503ff50a73ef0456e3daa897f13
Author: David Grove <dg...@users.noreply.github.com>
AuthorDate: Wed Aug 4 10:35:33 2021 -0400

    fix publish script (#114)
    
    14a31cfe missed changing 3AiAction to 36AiAction in publish.sh
---
 tools/travis/publish.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/travis/publish.sh b/tools/travis/publish.sh
index 015e953..12e1b7d 100755
--- a/tools/travis/publish.sh
+++ b/tools/travis/publish.sh
@@ -33,7 +33,7 @@ IMAGE_TAG=$3
 if [ ${RUNTIME_VERSION} == "3" ]; then
   RUNTIME="python3Action"
 elif [ ${RUNTIME_VERSION} == "3-ai" ]; then
-  RUNTIME="python3AiAction"
+  RUNTIME="python36AiAction"
 elif [ ${RUNTIME_VERSION} == "39" ]; then
   RUNTIME="python39Action"
 fi