Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/release_instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
15 changes: 15 additions & 0 deletions release-configs/wskdeploy-1.2.0.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
2 changes: 1 addition & 1 deletion tools/rcverify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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=$?
Expand Down