diff --git a/docs/release_instructions.md b/docs/release_instructions.md index 1bf994dc..63db9ec5 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---sources.tar.gz + D openwhisk---sources.tar.gz + $ svn delete openwhisk--sources.tar.gz.asc + D openwhisk---sources.tar.gz.asc + $ svn delete openwhisk---sources.tar.gz.sha512 + D openwhisk---sources.tar.gz.sha512 + + $ svn commit -m "Deleted file OpenWhisk 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 00000000..46ba2de1 --- /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 b1441ffe..313095dd 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=$?