You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by pd...@apache.org on 2018/08/20 21:13:49 UTC

[incubator-openwhisk-release] branch master updated: Release wskdeploy 0.9.8 under Apache (#230)

This is an automated email from the ASF dual-hosted git repository.

pdesai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-release.git


The following commit(s) were added to refs/heads/master by this push:
     new af96560  Release wskdeploy 0.9.8 under Apache (#230)
af96560 is described below

commit af96560eb1b24e235f3f12578067463342949eef
Author: Vincent <sh...@us.ibm.com>
AuthorDate: Mon Aug 20 17:13:48 2018 -0400

    Release wskdeploy 0.9.8 under Apache (#230)
---
 tools/config.json    | 20 +++++++-------------
 tools/package_doc.sh | 12 +++++++-----
 2 files changed, 14 insertions(+), 18 deletions(-)

diff --git a/tools/config.json b/tools/config.json
index c12e095..aa6fa5c 100644
--- a/tools/config.json
+++ b/tools/config.json
@@ -1,24 +1,18 @@
 {
-  "publish_stage": "false",
-  "update_doc": "true",
+  "publish_stage": "true",
+  "update_doc": "false",
   "stage_url": "https://dist.apache.org/repos/dist/dev/incubator/openwhisk",
   "release_url": "https://dist.apache.org/repos/dist/release/incubator/openwhisk",
   "versioning": {
-    "version": "0.9.0-incubating",
+    "version": "0.9.8-incubating",
     "pre_release_version": "rc1"
   },
   "RepoList": [
-    "openwhisk-client-go",
-    "openwhisk-cli"
+    "openwhisk-wskdeploy"
   ],
-  "openwhisk_client_go": {
-    "hash": "d7cee96",
-    "repository": "https://github.com/apache/incubator-openwhisk-client-go.git",
-    "branch": "master"
-  },
-  "openwhisk_cli": {
-    "hash": "0807de2",
-    "repository": "https://github.com/apache/incubator-openwhisk-cli.git",
+  "openwhisk_wskdeploy": {
+    "hash": "cd3c3c4",
+    "repository": "https://github.com/apache/incubator-openwhisk-wskdeploy.git",
     "branch": "master"
   }
 }
diff --git a/tools/package_doc.sh b/tools/package_doc.sh
index f14f129..863474d 100755
--- a/tools/package_doc.sh
+++ b/tools/package_doc.sh
@@ -23,9 +23,11 @@ echo "Package the documents."
 SCRIPTDIR="$(cd $(dirname "$0")/ && pwd)"
 source "$SCRIPTDIR/load_config.sh" $1 $2 $3
 
-mkdir -p $CURRENT_VERSION_DIR
+if [ "$UPDATE_DOC" == "true" ] ; then
+    mkdir -p $CURRENT_VERSION_DIR
 
-# Copy the documents for the current release into the $CURRENT_VERSION_DIR directory
-PARENTDIR="$(dirname "$SCRIPTDIR")"
-mkdir -p ${CURRENT_VERSION_DIR}/doc
-cp $PARENTDIR/releases/$version/* ${CURRENT_VERSION_DIR}/doc/
+    # Copy the documents for the current release into the $CURRENT_VERSION_DIR directory
+    PARENTDIR="$(dirname "$SCRIPTDIR")"
+    mkdir -p ${CURRENT_VERSION_DIR}/doc
+    cp $PARENTDIR/releases/$version/* ${CURRENT_VERSION_DIR}/doc/
+fi