Versions Compared
compared with
Key
- This line was added.
- This line was removed.
- Formatting was changed.
...
Code Block |
---|
$ git push userale-js $VERSION_NAME && git push apache-git rel/apache-flagon-userale-js-${VERSION_NAME}-rc${RC_NUMBER} |
If you need to delete tags:
Code Block |
---|
$ git push origin :refs/tags/<tag> |
DO NOT DELETE THE RELEASE BRANCH UNTIL AFTER ALL REQUISITE VOTES HAVE PASSED AND RELEASE ARTIFACTS HAVE BEEN PUSED TO APACHE MIRRORS AND NPM.
Publish the source and binary distributions to the pre-release area
You will need to have checked out the Apache distribution Subversion repository located at https://dist.apache.org/repos/dist/dev/incubator/flagon/. Please refer to Prerequisites for information.
In your workspace for the https://dist.apache.org/repos/dist/release/incubator/flagon repo, create a directory with the artifact name and version:
Code Block |
---|
$ mkdir apache-flagon-useralejs-${VERSION_NAME}-rc${RC_NUMBER} |
Copy into this directory all of the artifacts from the previous step - -src
and -bin
, .tar.gz
, .zip
and .rpm
, and all associated .sha512
and .asc
signatures. Then commit:
Code Block |
---|
$ svn add apache-flagon-useralejs-${VERSION_NAME}-rc${RC_NUMBER} $ svn commit --username $SVN_USERNAME --no-auth-cache --message "Add apache-flagon-useralejs-${VERSION_NAME}-rc${RC_NUMBER} to dist/dev/flagon" |
These steps can be performed as part of the make-release-artifacts.sh
script used earlier if ${APACHE_DIST_SVN_DIR}
points to the appropriate subversion directory.
...