This is an automated email from the ASF dual-hosted git repository.
mrutkowski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-release.git
The following commit(s) were added to refs/heads/master by this push:
new 927cdc6 Provide example of SVN cleanup (#381)
927cdc6 is described below
commit 927cdc6aa2b07fd043bba225b89fbdc0c7e204df
Author: Matt Rutkowski <[email protected]>
AuthorDate: Mon Mar 29 09:14:39 2021 -0500
Provide example of SVN cleanup (#381)
* Provide example of SVN cleanup
* Add Wskdeploy v1.2.0 release config
* Anonymize example
---
docs/release_instructions.md | 15 +++++++++++++++
release-configs/wskdeploy-1.2.0.json | 15 +++++++++++++++
tools/rcverify.sh | 2 +-
3 files changed, 31 insertions(+), 1 deletion(-)
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 @@ When announcing a release, you must use the URL of the
OpenWhisk Downloads page
### 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 @@ echo "$(tput setaf 6)$SHA$(tput sgr0)"
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=$?