DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
After both votes pass (see above), you need to migrate the RC artifacts that passed to this repository:
https://dist.apache.org/repos/dist/release/airflow/
(The migration should including renaming the files so that they no longer have the RC number in their filenames.)
The best way of doing this is tosvn cpbetween the two repos (this avoids having to upload the binaries again, and gives a clearer history in the svn commit logs):Code Block language bash theme Midnight # First clone the repo export RC=1.10.4rc5 export VERSION=${RC/rc?/} svn checkout https://dist.apache.org/repos/dist/release/airflow airflow-release # Create new folder for the release cd airflow-release svn mkdir ${VERSION} cd ${VERSION} # Move the artifacts to svn folder & commit for f in ../../airflow-dev/$RC/*; do svn cp $f ${$(basename $f)/rc5rc?/}; done svn commit -m "Release Airflow ${VERSION} from ${RC}"
...