Provide example of SVN cleanup (#381)

* Provide example of SVN cleanup

* Add Wskdeploy v1.2.0 release config

* Anonymize example
diff --git a/docs/release_instructions.md b/docs/release_instructions.md
index 1bf994d..63db9ec 100644
--- a/docs/release_instructions.md
+++ b/docs/release_instructions.md
@@ -457,6 +457,21 @@
 ### Post-release cleanup
 
 1. Remove the release candidate files from the staging svn.
+
+  for example:
+
+  ```sh
+  $ svn delete openwhisk-<project>-<version>-sources.tar.gz
+  D         openwhisk-<project>-<version>-sources.tar.gz
+  $ svn delete openwhisk<project>-<version>-sources.tar.gz.asc
+  D         openwhisk-<project>-<version>-sources.tar.gz.asc
+  $ svn delete openwhisk-<project>-<version>-sources.tar.gz.sha512
+  D         openwhisk-<project>-<version>-sources.tar.gz.sha512
+
+  $ svn commit -m "Deleted file OpenWhisk <project> <version> staged files."
+
+  ```
+
 1. If there is a prior release, remove it from the release svn (all releases are automatically archived, removing an old release
 from dist does not remove it from the archive).
 1. Disable the Jenkins job to build and push Docker images to Docker hub if you released the `openwhisk` or `openwhisk-deploy-kube` repositories.
diff --git a/release-configs/wskdeploy-1.2.0.json b/release-configs/wskdeploy-1.2.0.json
new file mode 100644
index 0000000..46ba2de
--- /dev/null
+++ b/release-configs/wskdeploy-1.2.0.json
@@ -0,0 +1,15 @@
+{
+  "versioning": {
+    "version": "1.2.0",
+    "pre_release_version": "rc1"
+  },
+  "RepoList": [
+    "openwhisk-wskdeploy"
+  ],
+  "openwhisk_wskdeploy": {
+    "name": "OpenWhisk Wskdeploy",
+    "hash": "03df1126c3b5205d642738479a08bb7cd66a03b3",
+    "repository": "https://github.com/apache/openwhisk-wskdeploy.git",
+    "branch": "master"
+  }
+}
diff --git a/tools/rcverify.sh b/tools/rcverify.sh
index b1441ff..313095d 100755
--- a/tools/rcverify.sh
+++ b/tools/rcverify.sh
@@ -246,7 +246,7 @@
 printf "validating sha512..."
 validate "$EXPECTED" "$SHA" "$CMD"
 
-printf "verifying asc..."  
+printf "verifying asc..."
 CMD="gpg --verify '$DIR/$TGZ.asc' '$DIR/$TGZ'"
 ASC=$(eval $CMD 2>&1)
 STATUS=$?