justinmclean commented on code in PR #159: URL: https://github.com/apache/otava/pull/159#discussion_r3255797951
########## docs/RELEASE.md: ########## @@ -220,12 +289,28 @@ sha512sum --check apache_otava-$RELEASE_VERSION-py3-none-any.whl.sha512 ### Publish Release Candidate ```bash -cp -r release ../otava-dist-release-repo/$RELEASE_VERSION-incubating-$RELEASE_CANDIDATE -cd ../otava-dist-release-repo +cp -r release $OTAVA_SVN_DEV/$RELEASE_VERSION-incubating-$RELEASE_CANDIDATE +cd $OTAVA_SVN_DEV +svn update && svn status + svn add $RELEASE_VERSION-incubating-$RELEASE_CANDIDATE/ -svn ci -m "[otava] Add $RELEASE_VERSION-incubating-$RELEASE_CANDIDATE" +svn ci -m "[otava] Upload $RELEASE_VERSION-incubating-$RELEASE_CANDIDATE for review and voting" +``` + +### Publish PyPI artifacts on test.pypi.org + +In svn dev/preview directory: + +```bash +# Go to dev/preview svn directory +cd $OTAVA_SVN_DEV +cd $RELEASE_VERSION-incubating-$RELEASE_CANDIDATE/pypi +# Publish to Test PyPI +twine upload --verbose --repository testpypi apache_otava-$RELEASE_VERSION-py3-none-any.whl apache_otava-$RELEASE_VERSION.tar.gz +# Verify at https://test.pypi.org/project/apache-otava/ ``` + Review Comment: This must be clearly marked as a release candidate -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
