This is an automated email from the ASF dual-hosted git repository. janpio pushed a commit to branch janpio-platform_release_jira in repository https://gitbox.apache.org/repos/asf/cordova-coho.git
commit 19168d92db2bf7c050306a6a003c7417665f4c72 Author: Jan Piotrowski <[email protected]> AuthorDate: Thu May 23 18:24:55 2019 +0200 readd $RELEASE --- docs/platforms-release-process.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/platforms-release-process.md b/docs/platforms-release-process.md index 46e9e43..ab23134 100644 --- a/docs/platforms-release-process.md +++ b/docs/platforms-release-process.md @@ -220,9 +220,9 @@ or use your favorite text editor manually. Commit these changes together in a single commit (one commit). - (cd cordova-android && v="$(grep '"version"' package.json | cut -d'"' -f4)" && git commit -am "Update RELEASENOTES & version for release $v") + (cd cordova-android && v="$(grep '"version"' package.json | cut -d'"' -f4)" && git commit -am "Update RELEASENOTES & version for release $v ($RELEASE)") -(Should be `Update RELEASENOTES.md for release $v` in case `version` is not yet updated in `package.json`.) +(Should be `Update RELEASENOTES.md for release $v ($RELEASE)` in case `version` is not yet updated in `package.json`.) ### Special Case 1: Release notes in release branch for patch release @@ -370,15 +370,15 @@ Ensure you have the svn repos checked out: Create archives from your tags: - coho create-archive -r android --dest cordova-dist-dev --tag 5.0.0 + coho create-archive -r android --dest cordova-dist-dev/$RELEASE --tag 5.0.0 Sanity Check: - coho verify-archive cordova-dist-dev/*.tgz + coho verify-archive cordova-dist-dev/$RELEASE/*.tgz Upload: - (cd cordova-dist-dev && svn add --force . && svn commit -m "Uploading release candidates for android release") + (cd cordova-dist-dev && svn add $RELEASE && svn commit -m "Uploading release candidates for android release ($RELEASE)") If everything went well the Release Candidate will show up here: https://dist.apache.org/repos/dist/dev/cordova/ @@ -481,9 +481,9 @@ First move the release package files to `dist/`: cd cordova-dist svn up svn rm platforms/cordova-android* - cp ../cordova-dist-dev/cordova-android* platforms/ + cp ../cordova-dist-dev/$RELEASE/cordova-android* platforms/ svn add platforms/cordova-android* - svn commit -m "Published android release to dist" + svn commit -m "Published android release to dist ($RELEASE)" Now you can find your release here: https://dist.apache.org/repos/dist/release/cordova/ @@ -491,8 +491,8 @@ Then you can also remove the release candidate from `dist-dev/`: cd ../cordova-dist-dev svn up - svn rm cordova-android* - svn commit -m "Removing release candidates from dist/dev" + svn rm $RELEASE + svn commit -m "Removing release candidates from dist/dev ($RELEASE)" cd .. And finally you can publish your package to npm: --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
